Skip to content

Commit

Permalink
Merge pull request #56 from Orfium/fix/parallel_to_serial_builds
Browse files Browse the repository at this point in the history
fix: make builds serial
  • Loading branch information
mkarajohn authored Jun 13, 2023
2 parents 868d028 + 36b44a6 commit 34b898e
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 @@ -82,7 +82,7 @@
"prepublishOnly": "yarn build",
"documentation": "cd documentation && yarn start",
"documentation:build": "cd documentation && yarn install && yarn build",
"build": "rimraf ./dist/types && npm run build:esm & npm run build:cjs",
"build": "rimraf ./dist/types && npm run build:esm && npm run build:cjs",
"build:esm": "rimraf ./dist/esm && tsc --module esnext --outDir dist/esm && copyfiles -f ./src/assets/* ./dist/esm/assets/",
"build:cjs": "rimraf ./dist/cjs && tsc --module commonjs --outDir dist/cjs && copyfiles -f ./src/assets/* ./dist/cjs/assets/",
"yalc:push": "yalc publish --push",
Expand Down

0 comments on commit 34b898e

Please sign in to comment.