Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '18.x'
node-version: '22.x'
- run: npm ci
- run: |
git config user.name "GitHub Actions Bot"
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@ dist/
packages/**/lib
**/build/*.tgz
*.sqlite
docs/.vitepress/cache
docs/.vitepress/cache
.claude/
22 changes: 17 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"lint": "npm run prettier && npm run eslint",
"compile": "lerna run compile",
"build:docs": "npm run build --workspace docs",
"update-dependencies": "npm exec --workspaces --include-workspace-root -- ncu -u --dep prod,dev,optional,peer -x \"@sinclair/typebox\",flexsearch",
"update-dependencies": "npm exec --workspaces --include-workspace-root -- ncu -u --dep prod,dev,optional,peer -x flexsearch",
"test": "npm run lint && npm run compile && c8 lerna run test --ignore @feathersjs/tests",
"generate:package": "pinion run generators/package.ts"
},
Expand Down
1 change: 1 addition & 0 deletions packages/generators/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
"@types/mocha": "^10.0.10",
"@types/node": "^24.3.1",
"@types/prettier": "^2.7.3",
"@sinclair/typebox": "^0.25.24",
"axios": "^1.11.0",
"knex": "^3.1.0",
"mocha": "^11.7.2",
Expand Down
1 change: 1 addition & 0 deletions packages/generators/src/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ export const generate = (ctx: AppGeneratorArguments) =>

if (schema === 'typebox') {
dependencies.push('@feathersjs/typebox')
dependencies.push('@sinclair/typebox')
}

return addVersions(dependencies, dependencyVersions)
Expand Down
7 changes: 5 additions & 2 deletions packages/typebox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,13 @@
"access": "public"
},
"dependencies": {
"@feathersjs/schema": "^5.0.34",
"@sinclair/typebox": "^0.25.0"
"@feathersjs/schema": "^5.0.34"
},
"peerDependencies": {
"@sinclair/typebox": ">=0.25.0"
},
"devDependencies": {
"@sinclair/typebox": "^0.34.41",
"@types/mocha": "^10.0.10",
"@types/node": "^24.3.1",
"mocha": "^11.7.2",
Expand Down
Loading
Loading