Skip to content

Commit

Permalink
bump & up deps
Browse files Browse the repository at this point in the history
  • Loading branch information
AmauryD committed Sep 27, 2023
1 parent 17ee3d6 commit 8a64653
Show file tree
Hide file tree
Showing 4 changed files with 757 additions and 999 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 16 ]
node: [ 16, 18, 20 ]
name: Node ${{ matrix.node }} tests
steps:
- name: Checkout
Expand All @@ -22,11 +22,11 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 7
version: 8
run_install: true
- name: Run tests
run: pnpm test
27 changes: 15 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fastest-validator-decorators",
"author": "Toby de Havilland",
"version": "2.0.0-beta.0",
"version": "2.0.1",
"description": "Fastest validator decorators",
"license": "MIT",
"main": "./dist/index.cjs",
Expand Down Expand Up @@ -41,25 +41,28 @@
],
"types": "dist/index.d.ts",
"devDependencies": {
"@swc/core": "^1.3.32",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"fastest-validator": "~1.16.0",
"@swc/core": "^1.3.90",
"@types/node": "^20.7.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"fastest-validator": "~1.17.0",
"fastest-validator-decorators": "^2.0.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vitest": "^0.28.4",
"tsup": "^6.5.0"
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.5"
},
"peerDependencies": {
"fastest-validator": "~1.15.0",
"fastest-validator": "^1.15.0",
"reflect-metadata": "^0.1.13"
},
"type": "module",
"dependencies": {
"type-fest": "~3.4.0"
"type-fest": "~4.3.2"
},
"volta": {
"node": "16.19.0"
}
}
Loading

0 comments on commit 8a64653

Please sign in to comment.