Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Get NPM scripts to work cross-platform #77

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@
"webpack-stream": "^4.0.0"
},
"scripts": {
"prepublishOnly": "npm install & gulp build",
"build": "npm install & gulp build",
"bundle": "npm install & gulp bundle",
"patchRelease": "npm install & gulp patchRelease",
"featureRelease": "npm install & gulp featureRelease",
"majorRelease": "npm install & gulp majorRelease",
"preRelease": "npm install & gulp preRelease"
"prepublishOnly": "npm install && gulp build",
"build": "npm install && gulp build",
"bundle": "npm install && gulp bundle",
"patchRelease": "npm install && gulp patchRelease",
"featureRelease": "npm install && gulp featureRelease",
"majorRelease": "npm install && gulp majorRelease",
"preRelease": "npm install && gulp preRelease"
}
}