Skip to content

Commit

Permalink
feat: node 18 requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinAndreev committed Aug 7, 2024
1 parent 9314e08 commit 1dfef15
Show file tree
Hide file tree
Showing 6 changed files with 550 additions and 1,524 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: 18.x
cache: yarn
- name: Build library
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18
registry-url: https://registry.npmjs.org/
- run: yarn install
- run: yarn build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: 18.x
cache: yarn
- name: Test build
working-directory: site
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
cache: 'yarn'
- run: yarn install
- name: Linst stage
Expand Down
17 changes: 10 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
},
"bugs": "https://github.com/LabO8/nestjs-s3",
"homepage": "https://labo8.github.io/nestjs-s3/",
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@aws-sdk/client-s3": ">=3.0.0",
"@aws-sdk/node-http-handler": ">=3.0.0",
Expand All @@ -45,9 +48,9 @@
"@aws-sdk/client-s3": "^3.623.0",
"@aws-sdk/node-http-handler": "^3.374.0",
"@aws-sdk/s3-request-presigner": "^3.623.0",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@hkdobrev/run-if-changed": "^0.3.1",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@hkdobrev/run-if-changed": "^0.5.2",
"@nestjs/axios": "^3.0.2",
"@nestjs/common": "^10.3.10",
"@nestjs/core": "^10.3.10",
Expand All @@ -57,16 +60,16 @@
"@types/jest": "^29.5.12",
"@types/node": "^18.11.15",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"axios": "^1.7.3",
"commitlint": "^17.8.1",
"commitlint": "^19.4.0",
"dotenv": "^16.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"lint-staged": "^15.2.8",
"prettier": "^2.8.1",
"reflect-metadata": "^0.1.13",
"rxjs": "7.6.0",
Expand Down
Loading

0 comments on commit 1dfef15

Please sign in to comment.