Skip to content

Commit

Permalink
Misc: Fix build script in package.json
Browse files Browse the repository at this point in the history
- Remove duplicate `&&` in the `build` script
  • Loading branch information
rokotyan committed Oct 25, 2024
1 parent ae974e4 commit 9821a2a
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 @@ -19,7 +19,7 @@
"scripts": {
"dev": "cd packages/dev && npm run dev",
"website": "cd packages/website && npm run start",
"build": "npm run build:ts && npm run build:react && npm run build:angular && npm run build:svelte && npm run build:vue && && npm run build:solid && npm run build:website",
"build": "npm run build:ts && npm run build:react && npm run build:angular && npm run build:svelte && npm run build:vue && npm run build:solid && npm run build:website",
"build:ts": "cd packages/ts && npm run build",
"build:angular": "cd packages/angular && npm run build",
"build:react": "cd packages/react && npm run build",
Expand Down

0 comments on commit 9821a2a

Please sign in to comment.