|
1 | 1 | { |
2 | 2 | "name": "nestjs", |
3 | | - "version": "5.3.13", |
| 3 | + "version": "5.3.14", |
4 | 4 | "description": "Modern, fast, powerful node.js web framework", |
5 | 5 | "scripts": { |
6 | 6 | "coverage": "nyc report --reporter=text-lcov | coveralls", |
|
15 | 15 | "prettier **/**/*.ts --ignore-path ./.prettierignore --write && git status", |
16 | 16 | "clean": "gulp clean:bundle", |
17 | 17 | "build": "npm run clean && gulp build", |
| 18 | + "prebuild:dev": "rm -rf node_modules/@nestjs", |
18 | 19 | "build:dev": "gulp build --dist node_modules/@nestjs && gulp move", |
19 | 20 | "postinstall": "opencollective", |
20 | | - "copy-misc": "gulp copy-misc", |
21 | | - "prepare": "npm run build:dev && npm run copy-misc", |
| 21 | + "prepare": "npm run build:dev && gulp copy-misc", |
| 22 | + "prerelease": "gulp copy-misc && npm run build:dev", |
22 | 23 | "publish": |
23 | | - "npm run build && ./node_modules/.bin/lerna publish --force-publish --exact -m \"chore(@nestjs) publish %s release\"", |
| 24 | + "npm run prerelease && npm run build && ./node_modules/.bin/lerna publish --force-publish --exact -m \"chore(@nestjs) publish %s release\"", |
24 | 25 | "publish:rc": |
25 | | - "npm run build && ./node_modules/.bin/lerna publish --npm-tag=rc -m \"chore(@nestjs) publish %s release\"", |
| 26 | + "npm run prerelease && npm run build && ./node_modules/.bin/lerna publish --npm-tag=rc -m \"chore(@nestjs) publish %s release\"", |
26 | 27 | "publish:next": |
27 | | - "npm run build && ./node_modules/.bin/lerna publish --npm-tag=next --skip-git -m \"chore(@nestjs) publish %s release\"", |
| 28 | + "npm run prerelease && npm run build && ./node_modules/.bin/lerna publish --npm-tag=next --skip-git -m \"chore(@nestjs) publish %s release\"", |
28 | 29 | "publish:beta": |
29 | | - "npm run build && ./node_modules/.bin/lerna publish --npm-tag=beta -m \"chore(@nestjs) publish %s release\"", |
| 30 | + "npm run prerelease && npm run build && ./node_modules/.bin/lerna publish --npm-tag=beta -m \"chore(@nestjs) publish %s release\"", |
30 | 31 | "publish:test": |
31 | | - "npm run build && ./node_modules/.bin/lerna publish --force-publish --npm-tag=test --skip-git -m \"chore(@nestjs) publish %s release\"" |
| 32 | + "npm run prerelease && npm run build && ./node_modules/.bin/lerna publish --force-publish --npm-tag=test --skip-git -m \"chore(@nestjs) publish %s release\"" |
32 | 33 | }, |
33 | 34 | "engines": { |
34 | 35 | "node": ">= 8.9.0" |
|
0 commit comments