@dialpad/i18n 1.19.0 → 1.20.4
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/.rush/temp/chunked-rush-logs/i18n.build.chunks.jsonl +6 -6
- package/.rush/temp/package-deps_build.json +5 -3
- package/.rush/temp/shrinkwrap-deps.json +3 -3
- package/CHANGELOG.json +34 -0
- package/CHANGELOG.md +9 -48
- package/dialpad-i18n-1.20.1.tgz +0 -0
- package/dialpad-i18n-1.20.2.tgz +0 -0
- package/dialpad-i18n-1.20.3.tgz +0 -0
- package/dist/i18n.cjs.map +1 -1
- package/dist/i18n.js.map +1 -1
- package/package/package.json +51 -0
- package/package.json +19 -19
- package/rush-logs/i18n.build.log +6 -6
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dialpad/i18n",
|
|
3
|
+
"version": "1.20.3",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Dialpad's internationalization library",
|
|
6
|
+
"author": "Dialpad",
|
|
7
|
+
"license": "UNLICENSED",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"lint": "eslint ./ --fix",
|
|
11
|
+
"lint:ci": "eslint ./ --output-file eslint_report.json --format json",
|
|
12
|
+
"format": "prettier ./ --write",
|
|
13
|
+
"format:ci": "prettier ./ --check",
|
|
14
|
+
"test": "vitest",
|
|
15
|
+
"coverage": "vitest run --coverage --passWithNoTests",
|
|
16
|
+
"coverage:open": "rushx coverage && open coverage/index.html",
|
|
17
|
+
"build": "run-p build:*",
|
|
18
|
+
"build:main": "vite build --config vite.config.ts",
|
|
19
|
+
"build:types": "rushx types:build",
|
|
20
|
+
"types:build": "tsc",
|
|
21
|
+
"types:check": "tsc --noEmit"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@dialpad/i18n-services": "workspace:*"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@dialpad/eslint-config": "workspace:*",
|
|
28
|
+
"@vitejs/plugin-vue": "~5.1.4",
|
|
29
|
+
"npm-run-all": "4.1.5",
|
|
30
|
+
"typescript": "~5.6.3",
|
|
31
|
+
"vite": "~5.4.10",
|
|
32
|
+
"vue": "~3.5.12",
|
|
33
|
+
"vue-tsc": "1.8.8",
|
|
34
|
+
"vitest": "~2.1.4"
|
|
35
|
+
},
|
|
36
|
+
"exports": {
|
|
37
|
+
"import": "./dist/i18n.js",
|
|
38
|
+
"types": "./dist/types/index.d.ts",
|
|
39
|
+
"require": "./dist/i18n.cjs"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"vue": "^3.0.0"
|
|
43
|
+
},
|
|
44
|
+
"dp": {
|
|
45
|
+
"nodpend": true
|
|
46
|
+
},
|
|
47
|
+
"repository": {
|
|
48
|
+
"type": "git",
|
|
49
|
+
"url": "https://github.com/dialpad/web-clients.git"
|
|
50
|
+
}
|
|
51
|
+
}
|
package/package.json
CHANGED
|
@@ -1,37 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dialpad/i18n",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.20.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Dialpad's internationalization library",
|
|
6
6
|
"author": "Dialpad",
|
|
7
7
|
"license": "UNLICENSED",
|
|
8
8
|
"type": "module",
|
|
9
|
-
"scripts": {
|
|
10
|
-
"lint": "eslint ./ --fix",
|
|
11
|
-
"lint:ci": "eslint ./ --output-file eslint_report.json --format json",
|
|
12
|
-
"format": "prettier ./ --write",
|
|
13
|
-
"format:ci": "prettier ./ --check",
|
|
14
|
-
"test": "vitest",
|
|
15
|
-
"coverage": "vitest run --coverage --passWithNoTests",
|
|
16
|
-
"coverage:open": "rushx coverage && open coverage/index.html",
|
|
17
|
-
"build": "run-p build:*",
|
|
18
|
-
"build:main": "vite build --config vite.config.ts",
|
|
19
|
-
"build:types": "rushx types:build",
|
|
20
|
-
"types:build": "tsc",
|
|
21
|
-
"types:check": "tsc --noEmit"
|
|
22
|
-
},
|
|
23
9
|
"dependencies": {
|
|
24
|
-
"@dialpad/i18n-services": "
|
|
10
|
+
"@dialpad/i18n-services": "1.9.0"
|
|
25
11
|
},
|
|
26
12
|
"devDependencies": {
|
|
27
|
-
"@dialpad/eslint-config": "workspace:*",
|
|
28
13
|
"@vitejs/plugin-vue": "~5.1.4",
|
|
29
14
|
"npm-run-all": "4.1.5",
|
|
30
15
|
"typescript": "~5.6.3",
|
|
31
16
|
"vite": "~5.4.10",
|
|
32
17
|
"vue": "~3.5.12",
|
|
33
18
|
"vue-tsc": "1.8.8",
|
|
34
|
-
"vitest": "~2.1.4"
|
|
19
|
+
"vitest": "~2.1.4",
|
|
20
|
+
"@dialpad/eslint-config": "2.1.0"
|
|
35
21
|
},
|
|
36
22
|
"exports": {
|
|
37
23
|
"import": "./dist/i18n.js",
|
|
@@ -47,5 +33,19 @@
|
|
|
47
33
|
"repository": {
|
|
48
34
|
"type": "git",
|
|
49
35
|
"url": "https://github.com/dialpad/web-clients.git"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"lint": "eslint ./ --fix",
|
|
39
|
+
"lint:ci": "eslint ./ --output-file eslint_report.json --format json",
|
|
40
|
+
"format": "prettier ./ --write",
|
|
41
|
+
"format:ci": "prettier ./ --check",
|
|
42
|
+
"test": "vitest",
|
|
43
|
+
"coverage": "vitest run --coverage --passWithNoTests",
|
|
44
|
+
"coverage:open": "rushx coverage && open coverage/index.html",
|
|
45
|
+
"build": "run-p build:*",
|
|
46
|
+
"build:main": "vite build --config vite.config.ts",
|
|
47
|
+
"build:types": "rushx types:build",
|
|
48
|
+
"types:build": "tsc",
|
|
49
|
+
"types:check": "tsc --noEmit"
|
|
50
50
|
}
|
|
51
|
-
}
|
|
51
|
+
}
|
package/rush-logs/i18n.build.log
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
Invoking: run-p build:*
|
|
2
2
|
|
|
3
|
-
> @dialpad/i18n@1.
|
|
4
|
-
>
|
|
3
|
+
> @dialpad/i18n@1.20.4 build:types
|
|
4
|
+
> rushx types:build
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
> @dialpad/i18n@1.
|
|
8
|
-
>
|
|
7
|
+
> @dialpad/i18n@1.20.4 build:main
|
|
8
|
+
> vite build --config vite.config.ts
|
|
9
9
|
|
|
10
|
+
vite v5.4.19 building for production...
|
|
10
11
|
Found configuration in /Users/daniellovero/src/wcf-sdk/rush.json
|
|
11
12
|
|
|
12
|
-
vite v5.4.19 building for production...
|
|
13
13
|
transforming...
|
|
14
14
|
Rush Multi-Project Build Tool 5.139.0 - Node.js 20.14.0 (LTS)
|
|
15
15
|
> "tsc"
|
|
@@ -19,4 +19,4 @@ rendering chunks...
|
|
|
19
19
|
computing gzip size...
|
|
20
20
|
dist/i18n.js 209.85 kB │ gzip: 49.05 kB │ map: 511.13 kB
|
|
21
21
|
dist/i18n.cjs 210.03 kB │ gzip: 49.09 kB │ map: 511.37 kB
|
|
22
|
-
✓ built in
|
|
22
|
+
✓ built in 373ms
|