Skip to content

Commit

Permalink
feat(stark-all): upgrade npm to v7 and NodeJS to v12
Browse files Browse the repository at this point in the history
Update engines in "package.json" file in packages, showcase and starter.

Adapt Getting Starter page in showcase with new versions.

BREAKING CHANGE:
Stark framework now requires:
  - NodeJS >= 12.22.1
  - npm >= 7.12.1
  • Loading branch information
SuperITMan committed Jun 8, 2021
1 parent 1e90001 commit 1e127a1
Show file tree
Hide file tree
Showing 12 changed files with 25,097 additions and 2,248 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ updates:
- ">= 0"
- dependency-name: "@types/node"
versions:
- ">=11"
- ">=13"
commit-message:
prefix: chore
include: scope
Expand All @@ -68,7 +68,7 @@ updates:
- ">= 0"
- dependency-name: "@types/node"
versions:
- ">=11"
- ">=13"
commit-message:
prefix: chore
include: scope
4 changes: 2 additions & 2 deletions packages/stark-build/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"url": "https://github.com/NationalBankBelgium/stark.git"
},
"engines": {
"node": ">=10.16.0",
"npm": ">=6.9.2"
"node": ">=12.22.1",
"npm": ">=7.12.1"
},
"types": "typings/index.d.ts",
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/stark-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"url": "https://github.com/NationalBankBelgium/stark.git"
},
"engines": {
"node": ">=10.16.0",
"npm": ">=6.9.2"
"node": ">=12.22.1",
"npm": ">=7.12.1"
},
"dependencies": {
"@angularclass/hmr": "^3.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/stark-rbac/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"url": "https://github.com/NationalBankBelgium/stark.git"
},
"engines": {
"node": ">=10.16.0",
"npm": ">=6.9.2"
"node": ">=12.22.1",
"npm": ">=7.12.1"
},
"peerDependencies": {
"@nationalbankbelgium/stark-core": "0.0.0-PLACEHOLDER-VERSION"
Expand Down
6 changes: 3 additions & 3 deletions packages/stark-testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
"url": "https://github.com/NationalBankBelgium/stark.git"
},
"engines": {
"node": ">=10.16.0",
"npm": ">=6.9.2"
"node": ">=12.22.1",
"npm": ">=7.12.1"
},
"dependencies": {
"@angular-devkit/build-angular": ">= 0.800.0 < 0.900.0",
"@npmcli/ci-detect": "^1.3.0",
"@types/jasmine": "~3.6.4",
"@types/karma": "~5.0.1",
"@types/node": "^10.17.54",
"@types/node": "^12.20.13",
"coveralls": "^3.1.0",
"jasmine-core": "^3.6.0",
"karma": "^5.2.3",
Expand Down
4 changes: 2 additions & 2 deletions packages/stark-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"url": "https://github.com/NationalBankBelgium/stark.git"
},
"engines": {
"node": ">=10.16.0",
"npm": ">=6.9.2"
"node": ">=12.22.1",
"npm": ">=7.12.1"
},
"dependencies": {
"@angular/material-moment-adapter": "^8.2.0",
Expand Down
2 changes: 1 addition & 1 deletion showcase/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ Most of the time you won't need to change these, but they allow you to customize
What you need to run this app:

- `node` and `npm`
- Ensure you're running the latest versions Node `v8.x.x`+ and NPM `5.8.x`+
- Ensure you're running the latest versions Node `v12.x.x`+ and NPM `7.12.x`+

> If you have `nvm` installed, which is highly recommended you can do a `nvm install --lts && nvm use` in `$` to run with the latest Node LTS.
> You can also have this `zsh` done for you [automatically](https://github.com/creationix/nvm#calling-nvm-use-automatically-in-a-directory-with-a-nvmrc-file)
Expand Down

0 comments on commit 1e127a1

Please sign in to comment.