@dialpad/i18n 1.24.0 → 1.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/README.md +2 -0
- package/package.json +23 -23
package/docs/README.md
CHANGED
|
@@ -723,5 +723,7 @@ github action when a PR to main is merged.
|
|
|
723
723
|
|
|
724
724
|
- [Fluent docs](https://github.com/projectfluent/fluent/wiki)
|
|
725
725
|
- [I18n best practices](https://localization.blog/2022/05/16/i18n-best-practices-keep-it-together/)
|
|
726
|
+
- [i18n-goblin-core docs](../../i18n-goblin-core/docs/README.md)
|
|
727
|
+
- [i18n-goblin-services docs](../../i18n-goblin-services/docs/README.md)
|
|
726
728
|
- [i18n-services docs (deprecated)](../../i18n-services/docs/README.md)
|
|
727
729
|
- [i18n for vue2 docs (deprecated)](../../i18n-vue2/docs/README.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dialpad/i18n",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Internationalization library for Vue 3 apps using Mozilla's Fluent syntax, with locale management, translation bundle loading, and CLI tools for translation workflows",
|
|
6
6
|
"keywords": [
|
|
@@ -21,29 +21,11 @@
|
|
|
21
21
|
"docs",
|
|
22
22
|
"index.ts"
|
|
23
23
|
],
|
|
24
|
-
"scripts": {
|
|
25
|
-
"typecheck": "rushx types:check",
|
|
26
|
-
"typecheck:ci": "rushx typecheck",
|
|
27
|
-
"lint": "echo 'needs migration to use @dialpad/eslint-config'",
|
|
28
|
-
"lint:ci": "echo 'needs migration to use @dialpad/eslint-config'",
|
|
29
|
-
"format": "prettier ./ --write",
|
|
30
|
-
"format:ci": "prettier ./ --check",
|
|
31
|
-
"test": "vitest",
|
|
32
|
-
"test:ci": "echo 'no tests'",
|
|
33
|
-
"coverage": "vitest run --coverage --passWithNoTests",
|
|
34
|
-
"coverage:open": "rushx coverage && open coverage/index.html",
|
|
35
|
-
"build": "run-p build:*",
|
|
36
|
-
"build:main": "vite build --config vite.config.ts",
|
|
37
|
-
"build:types": "rushx types:build",
|
|
38
|
-
"types:build": "tsc",
|
|
39
|
-
"types:check": "tsc --noEmit"
|
|
40
|
-
},
|
|
41
24
|
"dependencies": {
|
|
42
|
-
"@dialpad/i18n-goblin-
|
|
43
|
-
"@dialpad/i18n-goblin-
|
|
25
|
+
"@dialpad/i18n-goblin-services": "1.2.0",
|
|
26
|
+
"@dialpad/i18n-goblin-core": "1.1.0"
|
|
44
27
|
},
|
|
45
28
|
"devDependencies": {
|
|
46
|
-
"@dialpad/eslint-config": "1.0.2",
|
|
47
29
|
"@vitejs/plugin-vue": "~5.1.4",
|
|
48
30
|
"npm-run-all": "4.1.5",
|
|
49
31
|
"prettier": "~3.3.3",
|
|
@@ -52,7 +34,8 @@
|
|
|
52
34
|
"vue": "~3.5.12",
|
|
53
35
|
"eslint": "~9.13.0",
|
|
54
36
|
"vue-tsc": "~3.1.1",
|
|
55
|
-
"vitest": "~2.1.4"
|
|
37
|
+
"vitest": "~2.1.4",
|
|
38
|
+
"@dialpad/eslint-config": "2.1.2"
|
|
56
39
|
},
|
|
57
40
|
"exports": {
|
|
58
41
|
"import": "./dist/i18n.js",
|
|
@@ -76,5 +59,22 @@
|
|
|
76
59
|
"repository": {
|
|
77
60
|
"type": "git",
|
|
78
61
|
"url": "https://github.com/dialpad/goblin-client-tools"
|
|
62
|
+
},
|
|
63
|
+
"scripts": {
|
|
64
|
+
"typecheck": "rushx types:check",
|
|
65
|
+
"typecheck:ci": "rushx typecheck",
|
|
66
|
+
"lint": "echo 'needs migration to use @dialpad/eslint-config'",
|
|
67
|
+
"lint:ci": "echo 'needs migration to use @dialpad/eslint-config'",
|
|
68
|
+
"format": "prettier ./ --write",
|
|
69
|
+
"format:ci": "prettier ./ --check",
|
|
70
|
+
"test": "vitest",
|
|
71
|
+
"test:ci": "echo 'no tests'",
|
|
72
|
+
"coverage": "vitest run --coverage --passWithNoTests",
|
|
73
|
+
"coverage:open": "rushx coverage && open coverage/index.html",
|
|
74
|
+
"build": "run-p build:*",
|
|
75
|
+
"build:main": "vite build --config vite.config.ts",
|
|
76
|
+
"build:types": "rushx types:build",
|
|
77
|
+
"types:build": "tsc",
|
|
78
|
+
"types:check": "tsc --noEmit"
|
|
79
79
|
}
|
|
80
|
-
}
|
|
80
|
+
}
|