Skip to content

Commit

Permalink
Merge pull request nestjs#878 from wbhob/npm6-scripts
Browse files Browse the repository at this point in the history
chore(): rename prepublish commands to prepare
  • Loading branch information
kamilmysliwiec authored Jul 25, 2018
2 parents f395730 + 0bf98c4 commit 5f0f6e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
"build": "gulp build && gulp move",
"build:lib": "gulp build --dist bundle",
"copy-docs": "gulp copy-docs",
"prepublish": "npm run build:lib && npm run copy-docs",
"prepublish:rc": "npm run build:lib && npm run copy-docs",
"prepublish:next": "npm run build:lib && npm run copy-docs",
"prepublish:beta": "npm run build:lib && npm run copy-docs",
"prepare": "npm run build:lib && npm run copy-docs",
"prepare:rc": "npm run build:lib && npm run copy-docs",
"prepare:next": "npm run build:lib && npm run copy-docs",
"prepare:beta": "npm run build:lib && npm run copy-docs",
"publish": "./node_modules/.bin/lerna publish --exact -m \"chore(@nestjs) publish %s release\"",
"publish:rc": "./node_modules/.bin/lerna publish --npm-tag=rc -m \"chore(@nestjs) publish %s release\"",
"publish:next": "./node_modules/.bin/lerna publish --npm-tag=next --skip-git -m \"chore(@nestjs) publish %s release\"",
Expand Down

0 comments on commit 5f0f6e5

Please sign in to comment.