Skip to content

Commit

Permalink
Simplify package publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
shilman committed Jul 3, 2018
1 parent 4a01524 commit 9a21934
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ yarn bootstrap --reset --core
```sh
# publish and tag the release
npm run publish -- --concurrency 1 --npm-tag=alpha --force-publish=*
npm run publish:alpha

# update the release page
open https://github.com/storybooks/storybook/releases
Expand All @@ -355,7 +355,7 @@ git commit -m "Changelog for vX.Y"
yarn bootstrap --reset --core

# publish and tag the release
npm run publish -- --concurrency 1 --force-publish=*
npm run publish

# update the release page
open https://github.com/storybooks/storybook/releases
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
"lint:ts": "tslint -p . -c tslint.json -t stylish",
"lint:md": "remark -q",
"publish": "lerna publish --exact",
"publish:stable": "npm run publish -- --concurrency 1 --force-publish=*",
"publish:alpha": "npm run publish -- --concurrency 1 --force-publish=* --npm-tag=alpha",
"postpublish": "yarn --cwd lib/cli test -o",
"repo-dirty-check": "node ./scripts/repo-dirty-check",
"start": "npm --prefix examples/official-storybook run storybook",
Expand Down

0 comments on commit 9a21934

Please sign in to comment.