Skip to content

Commit

Permalink
chore: Bump dependencies (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelschork committed Mar 14, 2024
1 parent 58fe9f1 commit f182772
Show file tree
Hide file tree
Showing 4 changed files with 2,788 additions and 1,148 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
node-version: [16.x, 18.x, 19.x]
node-version: [18.x, 20.x, 21.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -36,7 +36,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v2
with:
version: 7.26.0
version: 8.15.4
- run: pnpm i --no-frozen-lockfile
- run: pnpm test
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- uses: pnpm/action-setup@v2
with:
version: 7.26.0
version: 8.15.4
- run: pnpm i --no-frozen-lockfile
- run: pnpm build
- run: pnpm publish --no-git-checks --access public
Expand Down
45 changes: 24 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,32 +42,35 @@
"test:coverage": "vitest run --coverage",
"format": "prettier --write \"**/*.(ts|json|yml|yaml|xml)\"",
"lint": "eslint . --ext .ts",
"build": "shx rm -rf dist && tsc --project tsconfig.build.json && shx cp -r src/lib/types dist/types"
"build": "shx rm -rf dist && tsc --project tsconfig.build.json && shx cp -r src/lib/types dist/types",
"ncu": "ncu",
"bump-deps": "ncu -u"
},
"devDependencies": {
"@types/node": "18.15.1",
"@types/uuid": "9.0.1",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"@vitest/coverage-c8": "0.29.2",
"@vitest/ui": "0.29.2",
"dotenv": "16.0.3",
"eslint": "8.36.0",
"@types/node": "20.11.26",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"@vitest/coverage-c8": "0.33.0",
"@vitest/ui": "1.3.1",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"isolated": "3.0.25",
"lint-staged": "13.2.0",
"prettier": "2.8.4",
"replace-in-file": "6.3.5",
"lint-staged": "15.2.2",
"npm-check-updates": "16.14.15",
"prettier": "3.2.5",
"replace-in-file": "7.1.0",
"shx": "0.3.4",
"simple-git-hooks": "2.8.1",
"typescript": "4.9.5",
"uuid": "9.0.0",
"vite": "4.1.4",
"vitest": "0.29.2"
"simple-git-hooks": "2.10.0",
"typescript": "5.4.2",
"uuid": "9.0.1",
"vite": "5.1.6",
"vitest": "1.3.1"
},
"dependencies": {
"@odata/client": "2.21.4",
"axios": "1.3.4",
"loglevel": "1.8.1",
"zip-a-folder": "1.1.5"
"@odata/client": "2.21.8",
"axios": "1.6.7",
"loglevel": "1.9.1",
"zip-a-folder": "3.1.6"
}
}
Loading

0 comments on commit f182772

Please sign in to comment.