Skip to content

Commit

Permalink
fix: 🐛 fixed to >=16.14
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienrousseau committed Oct 12, 2023
1 parent cd2ca3b commit 82109ae
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 18.x]
node-version: [16.x, 18.x]
steps:
- run: echo ${{github.ref}}
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
},
"description": "The Crypto Service Suite is a powerful and intuitive suite of security tools that provides numerous Cryptographic JavaScript functions and standardized REST APIs to manage encryption keys, perform common cryptographic operations such as key generation, data encryption, digital signing, and signature verification.",
"engines": {
"^12.20.0 || ^14.13.1 || >=18.6.0"
">=16.14 || >=18.6.0"
},
"homepage": "https://crypto-service.co",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/crypto-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"test": "__tests__"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=18.6.0"
"node": ">=16.14 || >=18.6.0"
},
"files": [
"dist/**/*"
Expand Down
2 changes: 1 addition & 1 deletion packages/crypto-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"test": "__tests__"
},
"engines": {
"^12.20.0 || ^14.13.1 || >=18.6.0"
">=16.14 || >=18.6.0"
},
"files": [
"dist/**/*"
Expand Down
2 changes: 1 addition & 1 deletion packages/crypto-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"test": "__tests__"
},
"engines": {
"^12.20.0 || ^14.13.1 || >=18.6.0"
">=16.14 || >=18.6.0"
},
"files": [
"dist/"
Expand Down
2 changes: 1 addition & 1 deletion packages/crypto-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"src": "./src"
},
"engines": {
"^12.20.0 || ^14.13.1 || >=18.6.0"
">=16.14 || >=18.6.0"
},
"files": [
"dist/"
Expand Down

0 comments on commit 82109ae

Please sign in to comment.