Skip to content

Commit

Permalink
fix: update minimum Node version in package.json (#192)
Browse files Browse the repository at this point in the history
This commit updates the minimum Node.js version supported
in the package.json file. This results that the minimum TLS 
version is 1.2 from now by default.
  • Loading branch information
pyrooka authored Mar 16, 2022
1 parent 92c1715 commit dfbebee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ This project contains core functionality required by Node.js code generated by t
`npm install ibm-cloud-sdk-core`
```

## Prerequisites
- Node.js version 12 or newer

## Usage
This package exports a single object containing a number of modules as top level properties.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
"./lib/sdk-test-helpers": "./lib/sdk-test-helpers.browser"
},
"engines": {
"node": ">=10"
"node": ">=12"
},
"scripts": {
"clean": "rm -fr node_modules",
Expand Down

0 comments on commit dfbebee

Please sign in to comment.