Skip to content

Commit

Permalink
chore: update dependencies (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
anbraten authored Apr 23, 2024
1 parent f637c55 commit b9969eb
Show file tree
Hide file tree
Showing 6 changed files with 1,473 additions and 1,242 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Cache pnpm modules
uses: actions/cache@v3
Expand All @@ -33,7 +33,7 @@ jobs:
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
run_install: true

- name: Build
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Cache pnpm modules
uses: actions/cache@v3
Expand All @@ -32,7 +32,7 @@ jobs:
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
run_install: true

- name: Unit test
Expand All @@ -50,7 +50,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Cache pnpm modules
uses: actions/cache@v3
Expand All @@ -62,7 +62,7 @@ jobs:
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
run_install: true

- name: Typecheck
Expand All @@ -80,7 +80,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Cache pnpm modules
uses: actions/cache@v3
Expand All @@ -92,7 +92,7 @@ jobs:
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
run_install: true

- name: Lint
Expand All @@ -110,7 +110,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Cache pnpm modules
uses: actions/cache@v3
Expand All @@ -122,7 +122,7 @@ jobs:
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
run_install: true

- name: Check format
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
"require": "./dist/index.js",
"types": "./dist/index.d.mts"
}
},
"main": "./dist/index.js",
Expand All @@ -29,18 +30,17 @@
"release": "semantic-release"
},
"devDependencies": {
"@geprog/eslint-config": "2.1.0",
"@geprog/semantic-release-config": "2.0.0",
"@vitest/coverage-c8": "0.28.5",
"c8": "7.13.0",
"eslint": "8.34.0",
"mongodb": "6.5.0",
"prettier": "2.8.4",
"semantic-release": "20.1.0",
"tsup": "6.6.3",
"typescript": "4.9.5",
"vite": "4.1.4",
"vitest": "0.28.5"
"@geprog/eslint-config": "^2.1.1",
"@geprog/semantic-release-config": "^2.0.0",
"@types/node": "^20.12.7",
"@vitest/coverage-v8": "^1.5.0",
"eslint": "^8.57.0",
"mongodb": "^6.5.0",
"prettier": "^3.2.5",
"semantic-release": "^20.1.0",
"tsup": "^8.0.2",
"typescript": "^4.9.5",
"vitest": "^1.5.0"
},
"peerDependencies": {
"mongodb": "^3.6.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
Expand All @@ -51,7 +51,7 @@
}
},
"engines": {
"pnpm": "7"
"pnpm": "8"
},
"publishConfig": {
"access": "public"
Expand Down
Loading

0 comments on commit b9969eb

Please sign in to comment.