1
1
mirror of https://github.com/primer/css.git synced 2024-12-01 04:21:12 +03:00

Merge pull request #718 from primer/fix-npm-link

Remove "prepare" npm script that runs "dist"
This commit is contained in:
simurai 2019-03-13 12:20:04 +09:00 committed by GitHub
commit 4a8c79b3f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,11 +28,10 @@
"lint": "npm-run-all -s lint-css lint-js", "lint": "npm-run-all -s lint-css lint-js",
"lint-css": "stylelint --quiet --syntax scss src/**/*.scss", "lint-css": "stylelint --quiet --syntax scss src/**/*.scss",
"lint-js": "eslint lib docs .storybook", "lint-js": "eslint lib docs .storybook",
"now-build": "next build", "now-build": "npm run dist && next build",
"now-start": "next start", "now-start": "next start",
"now-test": "npm-run-all -s now-build now-start", "now-test": "npm-run-all -s now-build now-start",
"postpublish": "script/postpublish", "postpublish": "script/postpublish",
"prepare": "npm run dist",
"prepublishOnly": "script/prepublish", "prepublishOnly": "script/prepublish",
"publish-storybook": "script/publish-storybook", "publish-storybook": "script/publish-storybook",
"start": "next dev", "start": "next dev",