Skip to content

Commit 0bf98c4

Browse files
committed
chore(): rename prepublish commands to prepare, to comply with https://docs.npmjs.com/misc/scripts#deprecation-note
1 parent 8d62307 commit 0bf98c4

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
"build": "gulp build && gulp move",
1313
"build:lib": "gulp build --dist bundle",
1414
"copy-docs": "gulp copy-docs",
15-
"prepublish": "npm run build:lib && npm run copy-docs",
16-
"prepublish:rc": "npm run build:lib && npm run copy-docs",
17-
"prepublish:next": "npm run build:lib && npm run copy-docs",
18-
"prepublish:beta": "npm run build:lib && npm run copy-docs",
15+
"prepare": "npm run build:lib && npm run copy-docs",
16+
"prepare:rc": "npm run build:lib && npm run copy-docs",
17+
"prepare:next": "npm run build:lib && npm run copy-docs",
18+
"prepare:beta": "npm run build:lib && npm run copy-docs",
1919
"publish": "./node_modules/.bin/lerna publish --exact -m \"chore(@nestjs) publish %s release\"",
2020
"publish:rc": "./node_modules/.bin/lerna publish --npm-tag=rc -m \"chore(@nestjs) publish %s release\"",
2121
"publish:next": "./node_modules/.bin/lerna publish --npm-tag=next --skip-git -m \"chore(@nestjs) publish %s release\"",

0 commit comments

Comments
 (0)