Skip to content

Commit

Permalink
build: fix syntax error for build
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekyEggo committed Sep 24, 2024
1 parent 42b8c2a commit 8a9444d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"scripts": {
"build": "rm -rf ./dist && rollup --config rollup.config.mjs && npm run types",
"watch": "rollup --config rollup.config.mjs --watch --watch.onEnd=\"npm run types\"",
"types": "rm -rf ./types && mkdir ./types && cp -r ./dist/types ./",
"types": "rm -rf ./types && mkdir types && cp -r ./dist/types ./",
"lint": "eslint . --ext .ts --max-warnings 0",
"lint:fix": "prettier --config .prettierrc src/**/*.ts --write",
"preversion": "npm run build && npm test && npm run lint",
Expand Down

0 comments on commit 8a9444d

Please sign in to comment.