Skip to content
This repository was archived by the owner on Mar 1, 2024. It is now read-only.

Commit d61b989

Browse files
Merge pull request #453 from kroecks/master
Fix for build-all script dependencies
2 parents dee225c + 4aded6b commit d61b989

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Frontend/implementations/typescript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"watch": "npx webpack --watch",
1010
"serve": "webpack serve --config webpack.dev.js",
1111
"serve-prod": "webpack serve --config webpack.prod.js",
12-
"build-all": "npm link ../../library ../../ui-library && cd ../../library && npm run build && cd ../ui-library && npm run build-all && cd ../implementations/typescript && npm run build",
13-
"build-dev-all": "npm link ../../library ../../ui-library && cd ../../library && npm run build-dev && cd ../ui-library && npm run build-dev-all && cd ../implementations/typescript && npm run build-dev"
12+
"build-all": "cd ../../library && npm run build && cd ../ui-library && npm run build-all && cd ../implementations/typescript && npm link ../../library ../../ui-library && npm run build",
13+
"build-dev-all": "cd ../../library && npm run build-dev && cd ../ui-library && npm run build-dev-all && cd ../implementations/typescript && npm link ../../library ../../ui-library && npm run build-dev"
1414
},
1515
"devDependencies": {
1616
"webpack-cli": "^5.0.1",

0 commit comments

Comments
 (0)