Skip to content

Commit 77cd38e

Browse files
authored
Merge pull request #202 from girder/npm-build
Ensure that npm build steps are run in the correct order
2 parents ecafde0 + a073054 commit 77cd38e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

javascript-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"watch": "tsc --watch",
1616
"build:clean": "rimraf ./dist",
1717
"build:compile": "tsc",
18-
"build": "npm-run-all build:*",
18+
"build": "npm-run-all build:clean build:compile",
1919
"prepack": "npm-run-all build"
2020
},
2121
"dependencies": {

widget/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"watch": "parcel watch ./src/widget.ts --out-dir ../s3_file_field/static/s3_file_field/",
1111
"build:clean": "rimraf ../s3_file_field/static/s3_file_field",
1212
"build:compile": "parcel build ./src/widget.ts --out-dir ../s3_file_field/static/s3_file_field/ --no-source-maps",
13-
"build": "npm-run-all build:*"
13+
"build": "npm-run-all build:clean build:compile"
1414
},
1515
"dependencies": {
1616
"django-s3-file-field": "file:../javascript-client"

0 commit comments

Comments
 (0)