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

prepublish -> prepare / prepublishOnly. #83

Merged
merged 1 commit into from
Dec 21, 2018
Merged
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
3 changes: 2 additions & 1 deletion dash_html_components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"generate-components": "cd scripts && sh generate-all.sh && cd -",
"install-local": "python setup.py install",
"uninstall-local": "pip uninstall dash-html-components -y",
"prepublish": "npm run clean && npm run generate-components && npm run build:all",
"prepare": "npm run clean && npm run generate-components",
"prepublishOnly": "npm run build:all",
"publish-all": "node scripts/publish.js",
"lint": "eslint src",
"build:js": "webpack --mode production",
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"generate-components": "cd scripts && sh generate-all.sh && cd -",
"install-local": "python setup.py install",
"uninstall-local": "pip uninstall dash-html-components -y",
"prepublish": "npm run clean && npm run generate-components && npm run build:all",
"prepare": "npm run clean && npm run generate-components",
"prepublishOnly": "npm run build:all",
"publish-all": "node scripts/publish.js",
"lint": "eslint src",
"build:js": "webpack --mode production",
Expand Down