Skip to content

Commit

Permalink
chore: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Jul 18, 2024
1 parent 69fe8ef commit 35d8ef9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,20 @@
"test:text": "shx rm -rf coverage && c8 -r text yarn test"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/node": "^20.10.2",
"@types/chai": "^4.3.14",
"@types/node": "^20.11.30",
"c8": "^7.14.0",
"chai": "^4.3.10",
"element-plus": "2.4.0",
"chai": "^4.4.1",
"element-plus": "2.7.3",
"esbuild": "^0.18.20",
"esbuild-register": "^3.5.0",
"marked-vue": "^1.3.0",
"serve": "^13.0.4",
"shx": "^0.3.4",
"typescript": "^5.3.2",
"vitepress": "1.0.0-rc.40",
"yakumo": "^1.0.0-beta.12",
"yakumo-esbuild": "^1.0.0-beta.5",
"yakumo-tsc": "^1.0.0-beta.3"
"typescript": "^5.4.3",
"vitepress": "1.2.2",
"yakumo": "^1.0.0-beta.16",
"yakumo-esbuild": "^1.0.0-beta.6",
"yakumo-tsc": "^1.0.0-beta.4"
}
}
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "schemastery",
"description": "Type driven schema validator",
"version": "3.14.5",
"version": "3.14.6",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
Expand All @@ -21,6 +21,6 @@
"author": "Shigma <shigma10826@gmail.com>",
"license": "MIT",
"dependencies": {
"cosmokit": "^1.5.2"
"cosmokit": "^1.6.2"
}
}
4 changes: 2 additions & 2 deletions packages/form/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "schemastery-vue",
"description": "Type driven schema validator",
"version": "7.3.3",
"version": "7.3.4",
"main": "src/index.ts",
"files": [
"src"
Expand All @@ -23,6 +23,6 @@
"vue": "^3"
},
"dependencies": {
"schemastery": "^3.14.5"
"schemastery": "^3.14.6"
}
}
2 changes: 1 addition & 1 deletion packages/form/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default extensions
export function useI18nText() {
const composer = useI18n()
const context: any = {}
return (message: string | Dict<string>) => {
return (message?: string | Dict<string>) => {
if (!message || typeof message === 'string') return message as string
const locales = fallbackWithLocaleChain(context, composer.fallbackLocale.value, composer.locale.value)
for (const locale of locales) {
Expand Down

0 comments on commit 35d8ef9

Please sign in to comment.