Skip to content

Commit

Permalink
chore: remove ncu limitation on prod and dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
deleonio committed Mar 26, 2021
1 parent 84dc597 commit e0f0475
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"scripts": {
"ci": "npm ci && lerna exec --concurrency 2 --ignore=@template/* --stream -- npm ci",
"format:tpl": "prettier --write packages/cli/frameworks/*/template/src/**/*",
"ncu": "ncu --dep prod,dev -t minor -u && npm run ncu:minor && npm run ncu:patch && npm run ncu:preview",
"ncu:minor": "lerna exec --concurrency 2 --stream -- ncu --dep prod,dev -t minor -u -x @leanup/*,typescript",
"ncu:patch": "lerna exec --concurrency 2 --stream -- ncu --dep prod,dev -t patch -u",
"ncu:preview": "lerna exec --concurrency 2 --stream -- ncu --dep prod,dev",
"ncu": "ncu -t minor -u && npm run ncu:minor && npm run ncu:patch && npm run ncu:preview",
"ncu:minor": "lerna exec --concurrency 2 --stream -- ncu -t minor -u -x @leanup/*,typescript",
"ncu:patch": "lerna exec --concurrency 2 --stream -- ncu -t patch -u",
"ncu:preview": "lerna exec --concurrency 2 --stream -- ncu",
"pack": "lerna exec --concurrency 2 --ignore=@template/* --stream -- npm install && lerna exec --concurrency 2 --ignore=@template/* --stream -- npm pack",
"outdated": "(npm outdated || true) && lerna exec --stream -- npm outdated",
"remove": "lerna exec --stream -- rm -rf node_modules package-lock.json *.log *.tgz && rm -rf node_modules package-lock.json *.log *.tgz",
Expand Down
2 changes: 1 addition & 1 deletion packages/stack/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"tslib": "2.1.0"
},
"peerDependencies": {
"chromedriver": ">=87",
"chromedriver": "^87",
"esbuild": "^0",
"geckodriver": "^1",
"selenium-server": "^3",
Expand Down
3 changes: 1 addition & 2 deletions packages/stack/frameworks/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@
"typescript": "4.2.3"
},
"peerDependencies": {
"@angular/core": ">=8",
"@ngtools/webpack": ">=8"
"@ngtools/webpack": "^11.2.6"
},
"scripts": {
"prepack": "rm -rf lib && tsc -p tsconfig.json && tsc"
Expand Down

0 comments on commit e0f0475

Please sign in to comment.