Skip to content

Commit

Permalink
chore: update dependencies (#118)
Browse files Browse the repository at this point in the history
* chore: update dependencies

* ci: update actions

* chore: update dep, node & pnpm

* test: correct filter for $nor

* fix: mergeQuery changed signature
  • Loading branch information
fratzinger authored Dec 10, 2024
1 parent 1fb9c56 commit 5d81b95
Show file tree
Hide file tree
Showing 10 changed files with 7,805 additions and 5,814 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/node.js.yml → .github/workflows/node.js.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,33 +10,33 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [18.x, 20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/checkout@v4

- run: corepack enable
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- run: pnpm i
- run: pnpm run test

coverage:
name: coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v3
- uses: actions/checkout@v4

- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "22"
cache: "pnpm"
- run: pnpm i
- uses: paambaati/codeclimate-action@v3.2.0
- uses: paambaati/codeclimate-action@v9
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
Expand All @@ -46,12 +46,12 @@ jobs:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v3
- uses: actions/checkout@v4

- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "22"
cache: "pnpm"
- run: pnpm i
- run: pnpm run build
24 changes: 24 additions & 0 deletions .github/workflows/pkg.pr.new.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish Any Commit
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 22
cache: "pnpm"

- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm build

- run: pnpx pkg-pr-new publish
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[build]
base = "/"
publish = "docs/.vitepress/dist"
command = "npm run docs:build"
command = "pnpm docs:build"
72 changes: 36 additions & 36 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
"dist/**"
],
"engines": {
"node": ">= 16.0.0"
"node": ">= 20.0.0"
},
"packageManager": "pnpm@8.8.0",
"packageManager": "pnpm@9.15.0",
"scripts": {
"build": "unbuild",
"version": "npm run build",
Expand All @@ -55,31 +55,31 @@
"@feathersjs/feathers": "^5.0.0"
},
"dependencies": {
"@feathersjs/errors": "^5.0.24",
"@feathersjs/feathers": "^5.0.24",
"@feathersjs/transport-commons": "^5.0.24",
"feathers-hooks-common": "^8.1.2",
"feathers-utils": "^3.1.3",
"@feathersjs/errors": "^5.0.31",
"@feathersjs/feathers": "^5.0.31",
"@feathersjs/transport-commons": "^5.0.31",
"feathers-hooks-common": "^8.2.1",
"feathers-utils": "^7.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@casl/ability": "^6.7.1",
"@feathersjs/adapter-commons": "^5.0.24",
"@feathersjs/authentication": "^5.0.24",
"@feathersjs/authentication-local": "^5.0.24",
"@feathersjs/configuration": "^5.0.24",
"@feathersjs/express": "^5.0.24",
"@feathersjs/knex": "^5.0.24",
"@feathersjs/memory": "^5.0.24",
"@feathersjs/mongodb": "^5.0.24",
"@feathersjs/socketio": "^5.0.24",
"@feathersjs/socketio-client": "^5.0.24",
"@casl/ability": "^6.7.2",
"@feathersjs/adapter-commons": "^5.0.31",
"@feathersjs/authentication": "^5.0.31",
"@feathersjs/authentication-local": "^5.0.31",
"@feathersjs/configuration": "^5.0.31",
"@feathersjs/express": "^5.0.31",
"@feathersjs/knex": "^5.0.31",
"@feathersjs/memory": "^5.0.31",
"@feathersjs/mongodb": "^5.0.31",
"@feathersjs/socketio": "^5.0.31",
"@feathersjs/socketio-client": "^5.0.31",
"@seald-io/nedb": "^4.0.4",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.7",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitest/coverage-v8": "^1.5.0",
"@vitest/coverage-v8": "^2.1.8",
"cors": "^2.8.5",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
Expand All @@ -94,22 +94,22 @@
"feathers-objection": "^7.6.0",
"feathers-sequelize": "^7.0.3",
"get-port": "^7.1.0",
"helmet": "^7.1.0",
"helmet": "^8.0.0",
"knex": "^3.1.0",
"mongodb": "^6.5.0",
"mongodb-memory-server": "^9.1.8",
"mongoose": "^8.3.1",
"np": "^10.0.3",
"objection": "^3.1.4",
"prettier": "^2.8.8",
"sequelize": "^6.37.2",
"socket.io-client": "^4.7.5",
"mongodb": "^6.12.0",
"mongodb-memory-server": "^10.1.2",
"mongoose": "^8.8.4",
"np": "^10.1.0",
"objection": "^3.1.5",
"prettier": "^3.4.2",
"sequelize": "^6.37.5",
"socket.io-client": "^4.8.1",
"sqlite3": "^5.1.7",
"type-fest": "^4.15.0",
"typescript": "^5.4.5",
"unbuild": "^1.2.1",
"vite": "^5.2.8",
"vitepress": "^1.1.0",
"vitest": "^1.5.0"
"type-fest": "^4.30.0",
"typescript": "^5.7.2",
"unbuild": "^2.0.0",
"vite": "^6.0.3",
"vitepress": "^1.5.0",
"vitest": "^2.1.8"
}
}
Loading

0 comments on commit 5d81b95

Please sign in to comment.