-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump minimum node version to 16.11 #1124
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
a614678
bump node to 16
samchungy 06561f2
Update .changeset/empty-donuts-arrive.md
samchungy 8780b36
bump requirement to 16.11
samchungy 9d37bc0
Merge branch 'node-16' of github.com:seek-oss/skuba into node-16
samchungy fd09519
Merge branch 'master' into node-16
72636c a9581da
sort and bump
samchungy 2ab5fff
add node 16.11 requirement to package templates
samchungy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
'skuba': major | ||
--- | ||
|
||
deps: Require Node.js 16.11+ | ||
|
||
Node.js 14 will reach end of life by April 2023. | ||
|
||
Consider upgrading the Node.js version for your project across: | ||
|
||
- `.nvmrc` | ||
- `package.json#/engines/node` | ||
- CI/CD configuration (`.buildkite/pipeline.yml`, `Dockerfile`, etc.) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'skuba': patch | ||
--- | ||
|
||
template/\*-package: Require Node.js 16.11+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,22 @@ | ||
{ | ||
"dependencies": {}, | ||
"name": "<%- moduleName %>", | ||
"version": "0.0.0-semantically-released", | ||
"description": "<%- description %>", | ||
"devDependencies": { | ||
"@types/node": "^16.18.3", | ||
"commitizen": "^4.2.4", | ||
"skuba": "*" | ||
"repository": { | ||
"type": "git", | ||
"url": "git+ssh://[email protected]/<%- orgName %>/<%- repoName %>.git" | ||
}, | ||
"license": "MIT", | ||
"sideEffects": false, | ||
"main": "./lib-commonjs/index.js", | ||
"module": "./lib-es2015/index.js", | ||
"types": "./lib-types/index.d.ts", | ||
"files": [ | ||
"lib*/**/*.d.ts", | ||
"lib*/**/*.js", | ||
"lib*/**/*.js.map", | ||
"lib*/**/*.json" | ||
], | ||
"license": "MIT", | ||
"main": "./lib-commonjs/index.js", | ||
"module": "./lib-es2015/index.js", | ||
"name": "<%- moduleName %>", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+ssh://[email protected]/<%- orgName %>/<%- repoName %>.git" | ||
}, | ||
"scripts": { | ||
"build": "skuba build-package", | ||
"commit": "cz", | ||
|
@@ -35,7 +32,13 @@ | |
"path": "cz-conventional-changelog" | ||
} | ||
}, | ||
"sideEffects": false, | ||
"types": "./lib-types/index.d.ts", | ||
"version": "0.0.0-semantically-released" | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@types/node": "^16.18.3", | ||
"commitizen": "^4.2.4", | ||
"skuba": "*" | ||
}, | ||
"engines": { | ||
"node": ">=16.11" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,22 @@ | ||
{ | ||
"dependencies": {}, | ||
"name": "<%- moduleName %>", | ||
"version": "0.0.0-semantically-released", | ||
"description": "<%- description %>", | ||
"devDependencies": { | ||
"@types/node": "^16.18.3", | ||
"commitizen": "^4.2.4", | ||
"skuba": "*" | ||
"repository": { | ||
"type": "git", | ||
"url": "git+ssh://[email protected]/<%- orgName %>/<%- repoName %>.git" | ||
}, | ||
"license": "UNLICENSED", | ||
"sideEffects": false, | ||
"main": "./lib-commonjs/index.js", | ||
"module": "./lib-es2015/index.js", | ||
"types": "./lib-types/index.d.ts", | ||
"files": [ | ||
"lib*/**/*.d.ts", | ||
"lib*/**/*.js", | ||
"lib*/**/*.js.map", | ||
"lib*/**/*.json" | ||
], | ||
"license": "UNLICENSED", | ||
"main": "./lib-commonjs/index.js", | ||
"module": "./lib-es2015/index.js", | ||
"name": "<%- moduleName %>", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+ssh://[email protected]/<%- orgName %>/<%- repoName %>.git" | ||
}, | ||
"scripts": { | ||
"build": "skuba build-package", | ||
"commit": "cz", | ||
|
@@ -35,7 +32,13 @@ | |
"path": "cz-conventional-changelog" | ||
} | ||
}, | ||
"sideEffects": false, | ||
"types": "./lib-types/index.d.ts", | ||
"version": "0.0.0-semantically-released" | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@types/node": "^16.18.3", | ||
"commitizen": "^4.2.4", | ||
"skuba": "*" | ||
}, | ||
"engines": { | ||
"node": ">=16.11" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. only change is this |
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorted the package json files