Skip to content

Commit

Permalink
feature: Add Support for Node21 #172 (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
regevbr committed Mar 24, 2024
1 parent 7e3ae6e commit 12dcdbc
Show file tree
Hide file tree
Showing 3 changed files with 1,680 additions and 1,547 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x, 21.x]

steps:

Expand Down
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "squiss-ts",
"version": "5.3.0",
"version": "5.4.0",
"description": "High-volume SQS poller",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "^16 || ^18 || ^20"
"node": "^18 || ^20 || ^21"
},
"scripts": {
"clean": "rm -rf .nyc_output coverage dist",
Expand Down Expand Up @@ -48,40 +48,40 @@
},
"homepage": "https://github.com/PruvoNet/squiss-ts#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.456.0",
"@aws-sdk/client-sqs": "^3.454.0",
"@aws-sdk/types": "^3.451.0",
"@aws-sdk/client-s3": "^3.540.0",
"@aws-sdk/client-sqs": "^3.540.0",
"@aws-sdk/types": "^3.535.0",
"linked-list": "2.1.0",
"ts-type-guards": "^0.7.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/chai": "^4.3.11",
"@types/chai": "^4.3.14",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.6",
"@types/node": "^16.18.39",
"@types/node": "^16.18.64",
"@types/proxyquire": "^1.3.31",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"chai": "^4.3.10",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"chai": "4.3.10",
"chai-as-promised": "^7.1.1",
"delay": "5.0.0",
"dirty-chai": "^2.0.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^10.2.0",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
Expand Down
Loading

0 comments on commit 12dcdbc

Please sign in to comment.