xt-plugin-intl 0.6.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/.editorconfig +16 -0
- package/.postcssrc.json +1 -0
- package/.rush/temp/chunked-rush-logs/xt-plugin-i11l.build.chunks.jsonl +23 -0
- package/.rush/temp/chunked-rush-logs/xt-plugin-intl.build-deploy-latest.chunks.jsonl +80 -0
- package/.rush/temp/chunked-rush-logs/xt-plugin-intl.build-deploy-next.chunks.jsonl +29 -0
- package/.rush/temp/chunked-rush-logs/xt-plugin-intl.build.chunks.jsonl +24 -0
- package/.rush/temp/chunked-rush-logs/xt-plugin-intl.test.chunks.jsonl +50 -0
- package/.rush/temp/package-deps_test.json +53 -0
- package/.rush/temp/shrinkwrap-deps.json +1083 -0
- package/CHANGELOG.md +13 -0
- package/README.md +8 -0
- package/angular.json +163 -0
- package/package.json +62 -0
- package/projects/intl/README.md +8 -0
- package/projects/intl/ng-package.json +7 -0
- package/projects/intl/node_modules/.vite/results.json +1 -0
- package/projects/intl/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -0
- package/projects/intl/package.json +22 -0
- package/projects/intl/src/lib/country/intl-country.component.css +0 -0
- package/projects/intl/src/lib/country/intl-country.component.html +24 -0
- package/projects/intl/src/lib/country/intl-country.component.spec.ts +33 -0
- package/projects/intl/src/lib/country/intl-country.component.ts +66 -0
- package/projects/intl/src/lib/currency/intl-currency.component.css +0 -0
- package/projects/intl/src/lib/currency/intl-currency.component.html +7 -0
- package/projects/intl/src/lib/currency/intl-currency.component.spec.ts +74 -0
- package/projects/intl/src/lib/currency/intl-currency.component.ts +46 -0
- package/projects/intl/src/lib/register.ts +36 -0
- package/projects/intl/src/public-api.ts +8 -0
- package/projects/intl/src/test-setup.ts +18 -0
- package/projects/intl/tsconfig.lib.json +14 -0
- package/projects/intl/tsconfig.lib.prod.json +11 -0
- package/projects/intl/tsconfig.spec.json +18 -0
- package/projects/intl/vitest.config.ts +19 -0
- package/projects/intl-plugin/federation.config.js +44 -0
- package/projects/intl-plugin/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -0
- package/projects/intl-plugin/public/favicon.ico +0 -0
- package/projects/intl-plugin/public/pluginicon.png +0 -0
- package/projects/intl-plugin/src/app/app.component.css +0 -0
- package/projects/intl-plugin/src/app/app.component.html +3 -0
- package/projects/intl-plugin/src/app/app.component.spec.ts +33 -0
- package/projects/intl-plugin/src/app/app.component.ts +23 -0
- package/projects/intl-plugin/src/app/app.config.ts +19 -0
- package/projects/intl-plugin/src/app/app.routes.ts +7 -0
- package/projects/intl-plugin/src/app/test-component/test.component.css +0 -0
- package/projects/intl-plugin/src/app/test-component/test.component.html +28 -0
- package/projects/intl-plugin/src/app/test-component/test.component.spec.ts +30 -0
- package/projects/intl-plugin/src/app/test-component/test.component.ts +53 -0
- package/projects/intl-plugin/src/bootstrap.ts +6 -0
- package/projects/intl-plugin/src/index.html +13 -0
- package/projects/intl-plugin/src/main.ts +6 -0
- package/projects/intl-plugin/src/styles.css +4 -0
- package/projects/intl-plugin/src/test-setup.ts +18 -0
- package/projects/intl-plugin/tsconfig.app.json +15 -0
- package/projects/intl-plugin/tsconfig.federation.json +13 -0
- package/projects/intl-plugin/tsconfig.spec.json +18 -0
- package/projects/intl-plugin/vitest.config.ts +19 -0
- package/rush-logs/xt-plugin-i11l.build.error.log +8 -0
- package/rush-logs/xt-plugin-i11l.build.log +23 -0
- package/rush-logs/xt-plugin-intl.build-deploy-latest.error.log +43 -0
- package/rush-logs/xt-plugin-intl.build-deploy-latest.log +80 -0
- package/rush-logs/xt-plugin-intl.build-deploy-next.error.log +10 -0
- package/rush-logs/xt-plugin-intl.build-deploy-next.log +29 -0
- package/rush-logs/xt-plugin-intl.build.error.log +9 -0
- package/rush-logs/xt-plugin-intl.build.log +24 -0
- package/rush-logs/xt-plugin-intl.test.log +50 -0
- package/tsconfig.json +36 -0
package/.editorconfig
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Editor configuration, see https://editorconfig.org
|
|
2
|
+
root = true
|
|
3
|
+
|
|
4
|
+
[*]
|
|
5
|
+
charset = utf-8
|
|
6
|
+
indent_style = space
|
|
7
|
+
indent_size = 2
|
|
8
|
+
insert_final_newline = true
|
|
9
|
+
trim_trailing_whitespace = true
|
|
10
|
+
|
|
11
|
+
[*.ts]
|
|
12
|
+
quote_type = single
|
|
13
|
+
|
|
14
|
+
[*.md]
|
|
15
|
+
max_line_length = off
|
|
16
|
+
trim_trailing_whitespace = false
|
package/.postcssrc.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{ "plugins": { "@tailwindcss/postcss": {} }}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{"kind":"O","text":"Invoking: ng build i11l --configuration=development \n"}
|
|
2
|
+
{"kind":"O","text":"Building Angular Package\n"}
|
|
3
|
+
{"kind":"O","text":"\n"}
|
|
4
|
+
{"kind":"O","text":"------------------------------------------------------------------------------\n"}
|
|
5
|
+
{"kind":"O","text":"Building entry point 'xt-plugin-i11l'\n"}
|
|
6
|
+
{"kind":"O","text":"------------------------------------------------------------------------------\n"}
|
|
7
|
+
{"kind":"E","text":"- Compiling with Angular sources in Ivy full compilation mode.\n"}
|
|
8
|
+
{"kind":"E","text":"✔ Compiling with Angular sources in Ivy full compilation mode.\n"}
|
|
9
|
+
{"kind":"E","text":"✔ Generating FESM bundles\n"}
|
|
10
|
+
{"kind":"E","text":"- Copying assets\n"}
|
|
11
|
+
{"kind":"E","text":"✔ Copying assets\n"}
|
|
12
|
+
{"kind":"E","text":"- Writing package manifest\n"}
|
|
13
|
+
{"kind":"E","text":"✔ Writing package manifest\n"}
|
|
14
|
+
{"kind":"E","text":"✔ Built xt-plugin-i11l\n"}
|
|
15
|
+
{"kind":"O","text":"\n"}
|
|
16
|
+
{"kind":"O","text":"------------------------------------------------------------------------------\n"}
|
|
17
|
+
{"kind":"O","text":"Built Angular Package\n"}
|
|
18
|
+
{"kind":"O","text":" - from: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-i11l/projects/i11l\n"}
|
|
19
|
+
{"kind":"O","text":" - to: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-i11l/dist/xt-plugin-i11l\n"}
|
|
20
|
+
{"kind":"O","text":"------------------------------------------------------------------------------\n"}
|
|
21
|
+
{"kind":"O","text":"\n"}
|
|
22
|
+
{"kind":"O","text":"Build at: 2025-07-14T12:59:15.159Z - Time: 6131ms\n"}
|
|
23
|
+
{"kind":"O","text":"\n"}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{"kind":"O","text":"Invoking: BUILD=production STAGE=latest npm run build-deploy \n"}
|
|
2
|
+
{"kind":"O","text":"\n"}
|
|
3
|
+
{"kind":"O","text":"> xt-plugin-intl@0.5.5 build-deploy\n"}
|
|
4
|
+
{"kind":"O","text":"> APP=intl-plugin && MAIN_LIB=intl && ng build $MAIN_LIB --configuration=$BUILD && ng build $APP --configuration=$BUILD --output-path=\"../../dist/$STAGE/$APP\" --base-href=\"https://test.dont-code.net/apps/$STAGE/$APP/\"\n"}
|
|
5
|
+
{"kind":"O","text":"\n"}
|
|
6
|
+
{"kind":"O","text":"Building Angular Package\n"}
|
|
7
|
+
{"kind":"O","text":"\n"}
|
|
8
|
+
{"kind":"O","text":"------------------------------------------------------------------------------\n"}
|
|
9
|
+
{"kind":"O","text":"Building entry point 'xt-plugin-intl'\n"}
|
|
10
|
+
{"kind":"O","text":"------------------------------------------------------------------------------\n"}
|
|
11
|
+
{"kind":"E","text":"- Compiling with Angular sources in partial compilation mode.\n"}
|
|
12
|
+
{"kind":"E","text":"✔ Compiling with Angular sources in partial compilation mode.\n"}
|
|
13
|
+
{"kind":"E","text":"- Writing FESM and DTS bundles\n"}
|
|
14
|
+
{"kind":"E","text":"✔ Writing FESM and DTS bundles\n"}
|
|
15
|
+
{"kind":"E","text":"- Copying assets\n"}
|
|
16
|
+
{"kind":"E","text":"✔ Copying assets\n"}
|
|
17
|
+
{"kind":"E","text":"- Writing package manifest\n"}
|
|
18
|
+
{"kind":"E","text":"✔ Writing package manifest\n"}
|
|
19
|
+
{"kind":"E","text":"✔ Built xt-plugin-intl\n"}
|
|
20
|
+
{"kind":"O","text":"\n"}
|
|
21
|
+
{"kind":"O","text":"------------------------------------------------------------------------------\n"}
|
|
22
|
+
{"kind":"O","text":"Built Angular Package\n"}
|
|
23
|
+
{"kind":"O","text":"- from: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/projects/intl\n"}
|
|
24
|
+
{"kind":"O","text":"- to: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/dist/xt-plugin-intl\n"}
|
|
25
|
+
{"kind":"O","text":"------------------------------------------------------------------------------\n"}
|
|
26
|
+
{"kind":"O","text":"\n"}
|
|
27
|
+
{"kind":"O","text":"Build at: 2026-01-07T09:09:09.613Z - Time: 5162ms\n"}
|
|
28
|
+
{"kind":"O","text":"\n"}
|
|
29
|
+
{"kind":"E","text":" WARN No entry point found for @primeuix/utils/zindex\n"}
|
|
30
|
+
{"kind":"E","text":" WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json\n"}
|
|
31
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/utils/zindex\n"}
|
|
32
|
+
{"kind":"E","text":" WARN No entry point found for @primeuix/utils/uuid\n"}
|
|
33
|
+
{"kind":"E","text":" WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json\n"}
|
|
34
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/utils/uuid\n"}
|
|
35
|
+
{"kind":"E","text":" WARN No entry point found for @primeuix/utils/object\n"}
|
|
36
|
+
{"kind":"E","text":" WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json\n"}
|
|
37
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/utils/object\n"}
|
|
38
|
+
{"kind":"E","text":" WARN No entry point found for @primeuix/utils/mergeprops\n"}
|
|
39
|
+
{"kind":"E","text":" WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json\n"}
|
|
40
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/utils/mergeprops\n"}
|
|
41
|
+
{"kind":"E","text":" WARN No entry point found for @primeuix/utils/eventbus\n"}
|
|
42
|
+
{"kind":"E","text":" WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json\n"}
|
|
43
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/utils/eventbus\n"}
|
|
44
|
+
{"kind":"E","text":" WARN No entry point found for @primeuix/utils/dom\n"}
|
|
45
|
+
{"kind":"E","text":" WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json\n"}
|
|
46
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/utils/dom\n"}
|
|
47
|
+
{"kind":"E","text":" WARN No entry point found for @primeuix/utils/classnames\n"}
|
|
48
|
+
{"kind":"E","text":" WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json\n"}
|
|
49
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/utils/classnames\n"}
|
|
50
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/styles/base\n"}
|
|
51
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/styles/toolbar\n"}
|
|
52
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/styles/button\n"}
|
|
53
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/styles/ripple\n"}
|
|
54
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/styles/badge\n"}
|
|
55
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/styles/inputtext\n"}
|
|
56
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/styles/inputnumber\n"}
|
|
57
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/styles/autocomplete\n"}
|
|
58
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/styles/chip\n"}
|
|
59
|
+
{"kind":"E","text":" WARN No meta data found for shared lib eta/core\n"}
|
|
60
|
+
{"kind":"E","text":" WARN No entry point found for @primeuix/themes/aura\n"}
|
|
61
|
+
{"kind":"E","text":" WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json\n"}
|
|
62
|
+
{"kind":"E","text":" WARN No meta data found for shared lib @primeuix/themes/aura\n"}
|
|
63
|
+
{"kind":"O","text":" INFO Building federation artefacts\n"}
|
|
64
|
+
{"kind":"O","text":"❯ Building...\n"}
|
|
65
|
+
{"kind":"O","text":"✔ Building...\n"}
|
|
66
|
+
{"kind":"O","text":"Initial chunk files | Names | Raw size | Estimated transfer size\n"}
|
|
67
|
+
{"kind":"O","text":"polyfills-XUYJO5JA.js | polyfills | 39.91 kB | 13.52 kB\n"}
|
|
68
|
+
{"kind":"O","text":"styles-GEVVBWJT.css | styles | 16.92 kB | 3.54 kB\n"}
|
|
69
|
+
{"kind":"O","text":"main-OJ6HHWUE.js | main | 2.74 kB | 1.15 kB\n"}
|
|
70
|
+
{"kind":"O","text":"chunk-2NFLSA4Y.js | - | 449 bytes | 449 bytes\n"}
|
|
71
|
+
{"kind":"O","text":"\n"}
|
|
72
|
+
{"kind":"O","text":" | Initial total | 60.03 kB | 18.66 kB\n"}
|
|
73
|
+
{"kind":"O","text":"\n"}
|
|
74
|
+
{"kind":"O","text":"Lazy chunk files | Names | Raw size | Estimated transfer size\n"}
|
|
75
|
+
{"kind":"O","text":"chunk-FEQGULQH.js | bootstrap | 12.42 kB | 2.72 kB\n"}
|
|
76
|
+
{"kind":"O","text":"\n"}
|
|
77
|
+
{"kind":"O","text":"Application bundle generation complete. [11.934 seconds] - 2026-01-07T09:10:08.612Z\n"}
|
|
78
|
+
{"kind":"O","text":"\n"}
|
|
79
|
+
{"kind":"O","text":"Output location: /home/gc-garunda/devs/dont-code/github/ng-xtend/dist/latest/intl-plugin\n"}
|
|
80
|
+
{"kind":"O","text":"\n"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{"kind":"O","text":"Invoking: BUILD=development STAGE=next npm run build-deploy \n"}
|
|
2
|
+
{"kind":"O","text":"\n"}
|
|
3
|
+
{"kind":"O","text":"> xt-plugin-intl@0.0.0 build-deploy\n"}
|
|
4
|
+
{"kind":"O","text":"> APP=intl-plugin && MAIN_LIB=intl && ng build $MAIN_LIB --configuration=$BUILD && ng build $APP --configuration=$BUILD --output-path=\"../../dist/$STAGE/$APP\" --base-href=\"https://test.dont-code.net/apps/$STAGE/$APP/\" && rm -f ../../dist/$STAGE/$APP/*.* && mv ../../dist/$STAGE/$APP/browser/* ../../dist/$STAGE/$APP\n"}
|
|
5
|
+
{"kind":"O","text":"\n"}
|
|
6
|
+
{"kind":"O","text":"Building Angular Package\n"}
|
|
7
|
+
{"kind":"O","text":"\n"}
|
|
8
|
+
{"kind":"O","text":"------------------------------------------------------------------------------\n"}
|
|
9
|
+
{"kind":"O","text":"Building entry point 'xt-plugin-intl'\n"}
|
|
10
|
+
{"kind":"O","text":"------------------------------------------------------------------------------\n"}
|
|
11
|
+
{"kind":"E","text":"- Compiling with Angular sources in full compilation mode.\n"}
|
|
12
|
+
{"kind":"E","text":"✔ Compiling with Angular sources in full compilation mode.\n"}
|
|
13
|
+
{"kind":"E","text":"✔ Generating FESM and DTS bundles\n"}
|
|
14
|
+
{"kind":"E","text":"- Copying assets\n"}
|
|
15
|
+
{"kind":"E","text":"✔ Copying assets\n"}
|
|
16
|
+
{"kind":"E","text":"- Writing package manifest\n"}
|
|
17
|
+
{"kind":"E","text":"✔ Writing package manifest\n"}
|
|
18
|
+
{"kind":"E","text":"✔ Built xt-plugin-intl\n"}
|
|
19
|
+
{"kind":"O","text":"\n"}
|
|
20
|
+
{"kind":"O","text":"------------------------------------------------------------------------------\n"}
|
|
21
|
+
{"kind":"O","text":"Built Angular Package\n"}
|
|
22
|
+
{"kind":"O","text":"- from: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/projects/intl\n"}
|
|
23
|
+
{"kind":"O","text":"- to: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/dist/xt-plugin-intl\n"}
|
|
24
|
+
{"kind":"O","text":"------------------------------------------------------------------------------\n"}
|
|
25
|
+
{"kind":"O","text":"\n"}
|
|
26
|
+
{"kind":"O","text":"Build at: 2025-09-04T10:04:24.206Z - Time: 6201ms\n"}
|
|
27
|
+
{"kind":"O","text":"\n"}
|
|
28
|
+
{"kind":"E","text":"An unhandled exception occurred: Cannot read properties of undefined (reading 'split')\n"}
|
|
29
|
+
{"kind":"E","text":"See \"/tmp/ng-TH2vAd/angular-errors.log\" for further details.\n"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{"kind":"O","text":"Invoking: ng build intl --configuration=development \n"}
|
|
2
|
+
{"kind":"O","text":"Building Angular Package\n"}
|
|
3
|
+
{"kind":"O","text":"\n"}
|
|
4
|
+
{"kind":"O","text":"------------------------------------------------------------------------------\n"}
|
|
5
|
+
{"kind":"O","text":"Building entry point 'xt-plugin-intl'\n"}
|
|
6
|
+
{"kind":"O","text":"------------------------------------------------------------------------------\n"}
|
|
7
|
+
{"kind":"E","text":"- Compiling with Angular sources in full compilation mode.\n"}
|
|
8
|
+
{"kind":"E","text":"✔ Compiling with Angular sources in full compilation mode.\n"}
|
|
9
|
+
{"kind":"E","text":"- Writing FESM and DTS bundles\n"}
|
|
10
|
+
{"kind":"E","text":"✔ Writing FESM and DTS bundles\n"}
|
|
11
|
+
{"kind":"E","text":"- Copying assets\n"}
|
|
12
|
+
{"kind":"E","text":"✔ Copying assets\n"}
|
|
13
|
+
{"kind":"E","text":"- Writing package manifest\n"}
|
|
14
|
+
{"kind":"E","text":"✔ Writing package manifest\n"}
|
|
15
|
+
{"kind":"E","text":"✔ Built xt-plugin-intl\n"}
|
|
16
|
+
{"kind":"O","text":"\n"}
|
|
17
|
+
{"kind":"O","text":"------------------------------------------------------------------------------\n"}
|
|
18
|
+
{"kind":"O","text":"Built Angular Package\n"}
|
|
19
|
+
{"kind":"O","text":"- from: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/projects/intl\n"}
|
|
20
|
+
{"kind":"O","text":"- to: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/dist/xt-plugin-intl\n"}
|
|
21
|
+
{"kind":"O","text":"------------------------------------------------------------------------------\n"}
|
|
22
|
+
{"kind":"O","text":"\n"}
|
|
23
|
+
{"kind":"O","text":"Build at: 2025-12-31T08:42:50.339Z - Time: 5200ms\n"}
|
|
24
|
+
{"kind":"O","text":"\n"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{"kind":"O","text":"Invoking: cd projects/intl && ../../node_modules/.bin/vitest && cd ../intl-plugin && ../../node_modules/.bin/vitest \n"}
|
|
2
|
+
{"kind":"O","text":"\n"}
|
|
3
|
+
{"kind":"O","text":" RUN v3.2.4 /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/projects/intl\n"}
|
|
4
|
+
{"kind":"O","text":"\n"}
|
|
5
|
+
{"kind":"O","text":"stdout | src/lib/country/intl-country.component.spec.ts > IntlCountryComponent > should create\n"}
|
|
6
|
+
{"kind":"O","text":"Registering Plugin International\n"}
|
|
7
|
+
{"kind":"O","text":"\n"}
|
|
8
|
+
{"kind":"O","text":"stdout | src/lib/currency/intl-currency.component.spec.ts > XtCurrencyComponent > should create\n"}
|
|
9
|
+
{"kind":"O","text":"Registering Plugin International\n"}
|
|
10
|
+
{"kind":"O","text":"\n"}
|
|
11
|
+
{"kind":"O","text":"stdout | src/lib/currency/intl-currency.component.spec.ts > XtCurrencyComponent > should support currency display\n"}
|
|
12
|
+
{"kind":"O","text":"Registering Plugin International\n"}
|
|
13
|
+
{"kind":"O","text":"\n"}
|
|
14
|
+
{"kind":"O","text":" ✓ src/lib/country/intl-country.component.spec.ts (1 test) 401ms\n"}
|
|
15
|
+
{"kind":"O","text":" ✓ IntlCountryComponent > should create 398ms\n"}
|
|
16
|
+
{"kind":"O","text":"stdout | src/lib/currency/intl-currency.component.spec.ts > XtCurrencyComponent > should support currency edit\n"}
|
|
17
|
+
{"kind":"O","text":"Registering Plugin International\n"}
|
|
18
|
+
{"kind":"O","text":"\n"}
|
|
19
|
+
{"kind":"O","text":" ✓ src/lib/currency/intl-currency.component.spec.ts (3 tests) 623ms\n"}
|
|
20
|
+
{"kind":"O","text":" ✓ XtCurrencyComponent > should support currency edit 376ms\n"}
|
|
21
|
+
{"kind":"O","text":"\n"}
|
|
22
|
+
{"kind":"O","text":" Test Files 2 passed (2)\n"}
|
|
23
|
+
{"kind":"O","text":" Tests 4 passed (4)\n"}
|
|
24
|
+
{"kind":"O","text":" Start at 09:51:14\n"}
|
|
25
|
+
{"kind":"O","text":" Duration 10.75s (transform 1.82s, setup 4.54s, collect 9.33s, tests 1.02s, environment 2.76s, prepare 3.96s)\n"}
|
|
26
|
+
{"kind":"O","text":"\n"}
|
|
27
|
+
{"kind":"O","text":"\n"}
|
|
28
|
+
{"kind":"O","text":" RUN v3.2.4 /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/projects/intl-plugin\n"}
|
|
29
|
+
{"kind":"O","text":"\n"}
|
|
30
|
+
{"kind":"O","text":"stdout | src/app/app.component.spec.ts > AppComponent > should create the app\n"}
|
|
31
|
+
{"kind":"O","text":"Registering Plugin International\n"}
|
|
32
|
+
{"kind":"O","text":"\n"}
|
|
33
|
+
{"kind":"O","text":"stdout | src/app/app.component.spec.ts > AppComponent > should have the 'test' title\n"}
|
|
34
|
+
{"kind":"O","text":"Registering Plugin International\n"}
|
|
35
|
+
{"kind":"O","text":"\n"}
|
|
36
|
+
{"kind":"O","text":"stdout | src/app/app.component.spec.ts > AppComponent > should render title\n"}
|
|
37
|
+
{"kind":"O","text":"Registering Plugin International\n"}
|
|
38
|
+
{"kind":"O","text":"\n"}
|
|
39
|
+
{"kind":"O","text":" ✓ src/app/app.component.spec.ts (3 tests) 140ms\n"}
|
|
40
|
+
{"kind":"O","text":"stdout | src/app/test-component/test.component.spec.ts > TestComponent > should create\n"}
|
|
41
|
+
{"kind":"O","text":"Registering Plugin International\n"}
|
|
42
|
+
{"kind":"O","text":"\n"}
|
|
43
|
+
{"kind":"O","text":" ✓ src/app/test-component/test.component.spec.ts (1 test) 426ms\n"}
|
|
44
|
+
{"kind":"O","text":" ✓ TestComponent > should create 424ms\n"}
|
|
45
|
+
{"kind":"O","text":"\n"}
|
|
46
|
+
{"kind":"O","text":" Test Files 2 passed (2)\n"}
|
|
47
|
+
{"kind":"O","text":" Tests 4 passed (4)\n"}
|
|
48
|
+
{"kind":"O","text":" Start at 09:51:37\n"}
|
|
49
|
+
{"kind":"O","text":" Duration 7.01s (transform 1.65s, setup 2.77s, collect 5.80s, tests 565ms, environment 2.21s, prepare 2.93s)\n"}
|
|
50
|
+
{"kind":"O","text":"\n"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"files": {
|
|
3
|
+
"plugins/xt-intl/.editorconfig": "59d9a3a3e73ffc640517ef488f6f89d6270195d1",
|
|
4
|
+
"plugins/xt-intl/.gitignore": "cc7b141350ffde43afce3ec16ea4d7b5007cde2b",
|
|
5
|
+
"plugins/xt-intl/.postcssrc.json": "e663f87e0d4fe753b960ac32b762f615ff783384",
|
|
6
|
+
"plugins/xt-intl/.rush/temp/shrinkwrap-deps.json": "5df020fe979dcc5f7c9e386e18b87526d23726cd",
|
|
7
|
+
"plugins/xt-intl/README.md": "13e4eef0d34ed2f020d6f726ccb453d47d51e124",
|
|
8
|
+
"plugins/xt-intl/angular.json": "2720d0f65b9ca9a4d33f4934267fac3a47f8cb5f",
|
|
9
|
+
"plugins/xt-intl/package.json": "1eba25ee26d3280f21114efb1c9de27bf4cd9358",
|
|
10
|
+
"plugins/xt-intl/projects/intl-plugin/federation.config.js": "80d3cfe26dad845a9a5e3d26301e43f1ac925d7e",
|
|
11
|
+
"plugins/xt-intl/projects/intl-plugin/public/favicon.ico": "57614f9c967596fad0a3989bec2b1deff33034f6",
|
|
12
|
+
"plugins/xt-intl/projects/intl-plugin/public/pluginicon.png": "1936bc893ec2b358752016cf0c018e6c5412a1ae",
|
|
13
|
+
"plugins/xt-intl/projects/intl-plugin/src/app/app.component.css": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
|
|
14
|
+
"plugins/xt-intl/projects/intl-plugin/src/app/app.component.html": "a2e87df6e66ac596a01379b9bf253febf9c400bb",
|
|
15
|
+
"plugins/xt-intl/projects/intl-plugin/src/app/app.component.spec.ts": "7242771e9cff84d753706c4a5f808d7d69faec61",
|
|
16
|
+
"plugins/xt-intl/projects/intl-plugin/src/app/app.component.ts": "e699d3bbcba29e7734b918ba60590d410cb95d06",
|
|
17
|
+
"plugins/xt-intl/projects/intl-plugin/src/app/app.config.ts": "f4a36632d433a45ee9dcc9cdf7fe96912ed40f5f",
|
|
18
|
+
"plugins/xt-intl/projects/intl-plugin/src/app/app.routes.ts": "6ae7b83393dbc9018cb78f10b22e489a56b22884",
|
|
19
|
+
"plugins/xt-intl/projects/intl-plugin/src/app/test-component/test.component.css": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
|
|
20
|
+
"plugins/xt-intl/projects/intl-plugin/src/app/test-component/test.component.html": "02bb7a70cc0f10edd30d9cabbb58bf8200092086",
|
|
21
|
+
"plugins/xt-intl/projects/intl-plugin/src/app/test-component/test.component.spec.ts": "ef385eea6829eab8ffcb1c0695c74fa95f508f04",
|
|
22
|
+
"plugins/xt-intl/projects/intl-plugin/src/app/test-component/test.component.ts": "446889dca4688216e39b2492546c9679a7f773ec",
|
|
23
|
+
"plugins/xt-intl/projects/intl-plugin/src/bootstrap.ts": "35b00f3463311f2afe0fd0d9d5f696dbb992dff5",
|
|
24
|
+
"plugins/xt-intl/projects/intl-plugin/src/index.html": "8a2f31723e4dfc0f1a20f86c0e3d0a5c2dcf5a6d",
|
|
25
|
+
"plugins/xt-intl/projects/intl-plugin/src/main.ts": "ed18d47821840bc667cc64c3a45f5a2a42e16804",
|
|
26
|
+
"plugins/xt-intl/projects/intl-plugin/src/styles.css": "a2d0fb6f123f417be49aa4636eabf945ee0e4ef3",
|
|
27
|
+
"plugins/xt-intl/projects/intl-plugin/src/test-setup.ts": "9a49f2174736eec8e9914195bcfec54155420c44",
|
|
28
|
+
"plugins/xt-intl/projects/intl-plugin/tsconfig.app.json": "e40712b8de394381944e707f50a542aa7ff7f704",
|
|
29
|
+
"plugins/xt-intl/projects/intl-plugin/tsconfig.federation.json": "5f69876e082a4c2df1ac39800807bdbbad1c273e",
|
|
30
|
+
"plugins/xt-intl/projects/intl-plugin/tsconfig.spec.json": "c355aee60bdc077bb4a56f0737ed148c61612581",
|
|
31
|
+
"plugins/xt-intl/projects/intl-plugin/vitest.config.ts": "e1aefbfec436de2cfc705fbef7360862a0e9cabc",
|
|
32
|
+
"plugins/xt-intl/projects/intl/README.md": "13e4eef0d34ed2f020d6f726ccb453d47d51e124",
|
|
33
|
+
"plugins/xt-intl/projects/intl/ng-package.json": "4a6cfee7979b2d9bd040d3469415ce6d95f63110",
|
|
34
|
+
"plugins/xt-intl/projects/intl/package.json": "2b164070a778d5b0a92e0fac89aed17f4c23b533",
|
|
35
|
+
"plugins/xt-intl/projects/intl/src/lib/country/intl-country.component.css": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
|
|
36
|
+
"plugins/xt-intl/projects/intl/src/lib/country/intl-country.component.html": "f7c046c29b06697b1f5bf0d81e62b954d7068195",
|
|
37
|
+
"plugins/xt-intl/projects/intl/src/lib/country/intl-country.component.spec.ts": "c609ddfc3164269b8b01411f6dd18695be803fb5",
|
|
38
|
+
"plugins/xt-intl/projects/intl/src/lib/country/intl-country.component.ts": "83f3ee9eaa00d6c646e79793bb4592c1bf94addf",
|
|
39
|
+
"plugins/xt-intl/projects/intl/src/lib/currency/intl-currency.component.css": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
|
|
40
|
+
"plugins/xt-intl/projects/intl/src/lib/currency/intl-currency.component.html": "327f5fe7e5052f558e99cf964dbb2e32cfc5c35e",
|
|
41
|
+
"plugins/xt-intl/projects/intl/src/lib/currency/intl-currency.component.spec.ts": "3817b22557308f4b149539b69daf89bd1b4ef750",
|
|
42
|
+
"plugins/xt-intl/projects/intl/src/lib/currency/intl-currency.component.ts": "b9595c2877e329392061ca469f8dc6eba755d25b",
|
|
43
|
+
"plugins/xt-intl/projects/intl/src/lib/register.ts": "71e12932a9f25c26f19077991e32662b41eaa771",
|
|
44
|
+
"plugins/xt-intl/projects/intl/src/public-api.ts": "0f80ce381d72419cc1e8137dcc942c1c120f521f",
|
|
45
|
+
"plugins/xt-intl/projects/intl/src/test-setup.ts": "9a49f2174736eec8e9914195bcfec54155420c44",
|
|
46
|
+
"plugins/xt-intl/projects/intl/tsconfig.lib.json": "b64173b63108f4521ace30fa35f9ca0ba5059c5f",
|
|
47
|
+
"plugins/xt-intl/projects/intl/tsconfig.lib.prod.json": "9215caac46fb3bee935fb9453b7055d2e1aef5b6",
|
|
48
|
+
"plugins/xt-intl/projects/intl/tsconfig.spec.json": "c355aee60bdc077bb4a56f0737ed148c61612581",
|
|
49
|
+
"plugins/xt-intl/projects/intl/vitest.config.ts": "e1aefbfec436de2cfc705fbef7360862a0e9cabc",
|
|
50
|
+
"plugins/xt-intl/tsconfig.json": "cbbaa08fb5e222b2fd03f3bb855e1f83a0aa52e3"
|
|
51
|
+
},
|
|
52
|
+
"arguments": "cd projects/intl && ../../node_modules/.bin/vitest && cd ../intl-plugin && ../../node_modules/.bin/vitest "
|
|
53
|
+
}
|