-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
66 changed files
with
2,253 additions
and
4,232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
'@typeschema/deepkit': minor | ||
'@typeschema/main': minor | ||
'@typeschema/all': minor | ||
'@typeschema/arktype': minor | ||
'@typeschema/class-validator': minor | ||
'@typeschema/core': minor | ||
'@typeschema/effect': minor | ||
'@typeschema/fastest-validator': minor | ||
'@typeschema/function': minor | ||
'@typeschema/io-ts': minor | ||
'@typeschema/joi': minor | ||
'@typeschema/json': minor | ||
'@typeschema/ow': minor | ||
'@typeschema/runtypes': minor | ||
'@typeschema/superstruct': minor | ||
'@typeschema/suretype': minor | ||
'@typeschema/typebox': minor | ||
'@typeschema/valibot': minor | ||
'@typeschema/valita': minor | ||
'@typeschema/vine': minor | ||
'@typeschema/yup': minor | ||
'@typeschema/zod': minor | ||
--- | ||
|
||
Upgrade deps |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// @ts-check | ||
|
||
import javascript from '@eslint/js'; | ||
import typescript from 'typescript-eslint'; | ||
import prettier from 'eslint-plugin-prettier/recommended'; | ||
import simpleImportSort from 'eslint-plugin-simple-import-sort'; | ||
|
||
export default typescript.config( | ||
javascript.configs.recommended, | ||
...typescript.configs.recommended, | ||
{ | ||
plugins: { | ||
'simple-import-sort': simpleImportSort, | ||
}, | ||
rules: { | ||
'simple-import-sort/imports': [ | ||
'error', | ||
{ | ||
groups: [ | ||
['^.*\\u0000$'], | ||
['^\\u0000'], | ||
['^node:'], | ||
['^@?\\w'], | ||
['^'], | ||
['^\\.'], | ||
], | ||
}, | ||
], | ||
'simple-import-sort/exports': 'error', | ||
}, | ||
}, | ||
{ | ||
files: ['**/src/__tests__/example.ts'], | ||
rules: { | ||
'@typescript-eslint/no-unused-vars': 'off', | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
}, | ||
}, | ||
{ | ||
ignores: ['**/sample/'], | ||
}, | ||
prettier, | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,52 +20,55 @@ | |
"test": "turbo test --filter=@typeschema/*", | ||
"test:e2e": "pnpm build && turbo test --filter=./examples/*", | ||
"release": "pnpm build && changeset publish", | ||
"upgrade:deps": "ncu -u --dep=dev --reject eslint && turbo upgrade:deps && pnpm gen", | ||
"upgrade:deps": "ncu -u --dep=dev && turbo upgrade:deps && pnpm gen", | ||
"create:adapter": "turbo gen create-adapter && pnpm gen", | ||
"prepare": "ts-patch install && typia patch", | ||
"clean:git": "git clean -fdx && pnpm install", | ||
"clean:sl": "sl clean --ignored --dirs --files && pnpm install" | ||
}, | ||
"devDependencies": { | ||
"@arethetypeswrong/cli": "^0.15.3", | ||
"@changesets/cli": "^2.27.1", | ||
"@deepkit/vite": "1.0.1-alpha.143", | ||
"@arethetypeswrong/cli": "^0.15.4", | ||
"@changesets/cli": "^2.27.7", | ||
"@deepkit/vite": "1.0.1-alpha.150", | ||
"@eslint/compat": "^1.1.1", | ||
"@eslint/eslintrc": "^3.1.0", | ||
"@eslint/js": "^9.9.1", | ||
"@trpc/server": "^10.45.2", | ||
"@turbo/gen": "^1.13.2", | ||
"@types/eslint": "^8.56.9", | ||
"@types/node": "^20.12.7", | ||
"@typescript-eslint/eslint-plugin": "^7.6.0", | ||
"@typescript-eslint/parser": "^7.6.0", | ||
"esbuild": "^0.20.2", | ||
"eslint": "^8.57.0", | ||
"eslint-config-airbnb-base": "^15.0.0", | ||
"eslint-config-airbnb-typescript": "^18.0.0", | ||
"@turbo/gen": "^2.0.14", | ||
"@types/eslint": "^9.6.0", | ||
"@types/eslint__js": "^8.42.3", | ||
"@types/node": "^22.5.0", | ||
"@typescript-eslint/eslint-plugin": "^8.2.0", | ||
"@typescript-eslint/parser": "^8.2.0", | ||
"esbuild": "^0.23.1", | ||
"eslint": "^9.9.1", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-import": "^2.29.1", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"eslint-plugin-simple-import-sort": "^12.1.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"eslint-plugin-simple-import-sort": "^12.1.1", | ||
"eslint-plugin-sort-keys": "^2.3.5", | ||
"expect-type": "^0.19.0", | ||
"expect-type": "^0.20.0", | ||
"magic-regexp": "^0.8.0", | ||
"npm-check-updates": "^16.14.18", | ||
"pnpm-sync-dependencies-meta-injected": "^0.0.10", | ||
"prettier": "^3.2.5", | ||
"publint": "^0.2.7", | ||
"npm-check-updates": "^17.1.0", | ||
"pnpm-sync-dependencies-meta-injected": "^0.0.14", | ||
"prettier": "^3.3.3", | ||
"publint": "^0.2.10", | ||
"rollup-plugin-typescript2": "^0.36.0", | ||
"ts-node": "^10.9.2", | ||
"ts-patch": "^3.1.2", | ||
"tslib": "^2.6.2", | ||
"tsup": "^8.0.2", | ||
"turbo": "^1.13.2", | ||
"typescript": "^5.4.5", | ||
"typia": "^6.0.2", | ||
"vitest": "^1.5.0" | ||
"ts-patch": "^3.2.1", | ||
"tslib": "^2.7.0", | ||
"tsup": "^8.2.4", | ||
"turbo": "^2.0.14", | ||
"typescript": "^5.5.4", | ||
"typescript-eslint": "^8.2.0", | ||
"typia": "^6.9.0", | ||
"vitest": "^2.0.5" | ||
}, | ||
"pnpm": { | ||
"peerDependencyRules": { | ||
"allowedVersions": { | ||
"svgo": "2.8.0" | ||
} | ||
} | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.