Skip to content

Commit d463b26

Browse files
committed
Fix "build:all" npm script
The script "build:all" was missing the "npm run" section for the "build:js" part.
1 parent 157dcbb commit d463b26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@
3737
"watch:all": "npm-run-all --parallel watch:css watch:js",
3838
"build:css": "npm run scss && npm run autoprefixer",
3939
"build:js": "npm run uglify",
40-
"build:all": "npm run build:css && build:js"
40+
"build:all": "npm run build:css && npm run build:js"
4141
}
4242
}

0 commit comments

Comments
 (0)