Skip to content

Commit c62c70d

Browse files
authored
fix: stricter types for transformers, mutations, getDataIsArray/getResultIsArray (#21)
* fix: stricter types for transformers, mutations, getDataIsArray/getResultIsArray * fix: preventChanges correct typings * chore: update dependencies
1 parent 430eea3 commit c62c70d

File tree

16 files changed

+766
-424
lines changed

16 files changed

+766
-424
lines changed

docs/.vitepress/utilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable import-x/no-named-as-default-member */
22
import fs from 'node:fs/promises'
33
import matter from 'gray-matter'
4-
import { glob } from 'glob'
4+
import { glob } from 'tinyglobby'
55
import kebabCase from 'lodash/kebabCase.js'
66
import { mainBranch, repository } from './meta'
77
import type { Node } from 'typescript'

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -82,41 +82,41 @@
8282
"!src/**/*.test.ts"
8383
],
8484
"dependencies": {
85-
"@feathersjs/adapter-commons": "^5.0.40",
86-
"@feathersjs/errors": "^5.0.40",
85+
"@feathersjs/adapter-commons": "^5.0.41",
86+
"@feathersjs/errors": "^5.0.41",
8787
"dequal": "^2.0.3",
8888
"fast-copy": "^4.0.2",
8989
"lodash": "^4.17.23",
9090
"neotraverse": "^0.6.18"
9191
},
9292
"devDependencies": {
9393
"@feathers-community/eslint-config": "^0.0.10",
94-
"@feathersjs/authentication": "^5.0.40",
95-
"@feathersjs/authentication-local": "^5.0.40",
96-
"@feathersjs/client": "^5.0.40",
97-
"@feathersjs/express": "^5.0.40",
98-
"@feathersjs/memory": "^5.0.40",
99-
"@feathersjs/socketio": "^5.0.40",
100-
"@feathersjs/socketio-client": "^5.0.40",
101-
"@shikijs/vitepress-twoslash": "^3.22.0",
102-
"@tailwindcss/vite": "^4.1.18",
94+
"@feathersjs/authentication": "^5.0.41",
95+
"@feathersjs/authentication-local": "^5.0.41",
96+
"@feathersjs/client": "^5.0.41",
97+
"@feathersjs/express": "^5.0.41",
98+
"@feathersjs/memory": "^5.0.41",
99+
"@feathersjs/socketio": "^5.0.41",
100+
"@feathersjs/socketio-client": "^5.0.41",
101+
"@shikijs/vitepress-twoslash": "^4.0.0",
102+
"@tailwindcss/vite": "^4.2.1",
103103
"@tsconfig/node24": "^24.0.4",
104-
"@types/lodash": "^4.17.23",
104+
"@types/lodash": "^4.17.24",
105105
"@types/markdown-it": "^14.1.2",
106-
"@types/node": "^25.2.3",
106+
"@types/node": "^25.3.2",
107107
"@vitest/coverage-v8": "^4.0.18",
108108
"dedent": "^1.7.1",
109109
"eslint": "^9.39.2",
110-
"glob": "^13.0.2",
111110
"gray-matter": "^4.0.3",
112111
"lru-cache": "^11.2.6",
113112
"markdown-it": "^14.1.1",
114-
"npm-check-updates": "^19.3.2",
113+
"npm-check-updates": "^19.6.2",
115114
"prettier": "^3.8.1",
116115
"sass": "^1.97.3",
117116
"shx": "^0.4.0",
118117
"sift": "^17.1.3",
119-
"tailwindcss": "^4.1.18",
118+
"tailwindcss": "^4.2.1",
119+
"tinyglobby": "^0.2.15",
120120
"tsdown": "^0.20.3",
121121
"typescript": "^5.9.3",
122122
"vitepress": "^2.0.0-alpha.16",

0 commit comments

Comments
 (0)