Skip to content

Commit

Permalink
fix: remove prebuild from build step
Browse files Browse the repository at this point in the history
npm offers `pre` and `post` scripts that will run automatically before or after a script.

Co-authored-by: André M. <[email protected]>
  • Loading branch information
jboix and amtins authored Apr 9, 2024
1 parent 91acbcb commit ad35364
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 @@ -5,7 +5,7 @@
"type": "module",
"scripts": {
"prebuild": "node .prebuild.js",
"build": "npm run prebuild && vite build",
"build": "vite build",
"test": "vitest run --coverage --reporter=verbose --silent",
"eslint": "eslint {src,test}/**/*.js",
"eslint:fix": "eslint {src,test}/**/*.js --fix",
Expand Down

0 comments on commit ad35364

Please sign in to comment.