Skip to content

Commit

Permalink
fix: basic implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Jul 5, 2023
1 parent 493ea96 commit ed975fb
Show file tree
Hide file tree
Showing 24 changed files with 1,832 additions and 2,075 deletions.
60 changes: 30 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,62 +74,62 @@
}
},
"dependencies": {
"@intlify/bundle-utils": "^5.5.0",
"@intlify/shared": "9.3.0-beta.17",
"@intlify/unplugin-vue-i18n": "^0.10.0",
"@intlify/bundle-utils": "^7.0.1",
"@intlify/shared": "9.3.0-beta.21",
"@intlify/unplugin-vue-i18n": "^0.12.0",
"@mizchi/sucrase": "^4.1.0",
"@nuxt/kit": "^3.4.1",
"@vue/compiler-sfc": "^3.2.47",
"@vue/compiler-sfc": "^3.3.4",
"cookie-es": "^0.5.0",
"debug": "^4.3.4",
"defu": "^6.1.2",
"estree-walker": "^3.0.3",
"is-https": "^4.0.0",
"js-cookie": "^3.0.1",
"js-cookie": "^3.0.5",
"knitwork": "^1.0.0",
"magic-string": "^0.27.0",
"mlly": "^1.2.0",
"pathe": "^1.1.0",
"pkg-types": "^1.0.2",
"ufo": "^1.1.0",
"unplugin": "^1.3.1",
"mlly": "^1.4.0",
"pathe": "^1.1.1",
"pkg-types": "^1.0.3",
"ufo": "^1.1.2",
"unplugin": "^1.3.2",
"unstorage": "^1.5.0",
"vue-i18n": "9.3.0-beta.19",
"vue-i18n": "9.3.0-beta.21",
"vue-i18n-routing": "^0.13.0"
},
"devDependencies": {
"@babel/parser": "^7.21.4",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@babel/types": "^7.21.4",
"@babel/parser": "^7.22.6",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"@babel/types": "^7.22.5",
"@nuxt/module-builder": "latest",
"@nuxt/schema": "^3.4.1",
"@types/debug": "^4.1.7",
"@types/debug": "^4.1.8",
"@types/js-cookie": "^3.0.3",
"@types/rimraf": "^3",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"bumpp": "^9.1.0",
"changelogithub": "^0.12.7",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"bumpp": "^9.1.1",
"changelogithub": "^0.12.12",
"debug": "^4.3.4",
"eslint": "^8.38.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"execa": "^7.1.1",
"get-port-please": "^3.0.1",
"gh-changelogen": "^0.2.8",
"jiti": "^1.18.2",
"jsdom": "^21.1.1",
"lint-staged": "^13.2.1",
"jiti": "^1.19.1",
"jsdom": "^21.1.2",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"nuxt": "^3.4.1",
"ofetch": "^1.0.1",
"ofetch": "^1.1.1",
"playwright": "^1.32.3",
"prettier": "^2.8.7",
"prettier": "^2.8.8",
"rimraf": "^4.4.1",
"ts-essentials": "^9.3.1",
"typescript": "^5.1.3",
"vitest": "^0.30.1",
"vue": "^3.2.47",
"ts-essentials": "^9.3.2",
"typescript": "^5.1.6",
"vitest": "^0.32.4",
"vue": "^3.3.4",
"yorkie": "^2.0.0"
},
"gitHooks": {
Expand Down
4 changes: 2 additions & 2 deletions playground/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default defineNuxtConfig({
experimental: {
jsTsFormatResource: true
},
precompile: {
compilation: {
strictMessage: false,
escapeHtml: true
},
Expand Down Expand Up @@ -110,7 +110,7 @@ export default defineNuxtConfig({
experimental: {
jsTsFormatResource: true
},
precompile: {
compilation: {
strictMessage: false,
escapeHtml: true
},
Expand Down
2 changes: 1 addition & 1 deletion playground/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const availableLocales = computed(() => {
const i = tm('items')
console.log('items via tm', i, typeof i)
const items = i.map(item => rt(item.name))
const items = [] // i.map(item => rt(item.name))
console.log('items items', items)
definePageMeta({
Expand Down

0 comments on commit ed975fb

Please sign in to comment.