Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lefthook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ pre-commit:
parallel: true
commands:
lint:
run: /opt/homebrew/bin/pnpm lint
run: pnpm lint
typecheck:
run: /opt/homebrew/bin/pnpm tsc
run: pnpm tsc
build:
run: /opt/homebrew/bin/pnpm build
run: pnpm build
test:
run: /opt/homebrew/bin/pnpm test:ci
run: pnpm test:ci
9 changes: 2 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,8 @@
},
"./style.css": "./dist/index.css"
},
"sideEffects": [
"*.css",
"**/*.css"
],
"files": [
"dist"
],
"sideEffects": ["*.css", "**/*.css"],
"files": ["dist"],
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
Expand Down