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.
Files changed (66) hide show
  1. package/.editorconfig +16 -0
  2. package/.postcssrc.json +1 -0
  3. package/.rush/temp/chunked-rush-logs/xt-plugin-i11l.build.chunks.jsonl +23 -0
  4. package/.rush/temp/chunked-rush-logs/xt-plugin-intl.build-deploy-latest.chunks.jsonl +80 -0
  5. package/.rush/temp/chunked-rush-logs/xt-plugin-intl.build-deploy-next.chunks.jsonl +29 -0
  6. package/.rush/temp/chunked-rush-logs/xt-plugin-intl.build.chunks.jsonl +24 -0
  7. package/.rush/temp/chunked-rush-logs/xt-plugin-intl.test.chunks.jsonl +50 -0
  8. package/.rush/temp/package-deps_test.json +53 -0
  9. package/.rush/temp/shrinkwrap-deps.json +1083 -0
  10. package/CHANGELOG.md +13 -0
  11. package/README.md +8 -0
  12. package/angular.json +163 -0
  13. package/package.json +62 -0
  14. package/projects/intl/README.md +8 -0
  15. package/projects/intl/ng-package.json +7 -0
  16. package/projects/intl/node_modules/.vite/results.json +1 -0
  17. package/projects/intl/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -0
  18. package/projects/intl/package.json +22 -0
  19. package/projects/intl/src/lib/country/intl-country.component.css +0 -0
  20. package/projects/intl/src/lib/country/intl-country.component.html +24 -0
  21. package/projects/intl/src/lib/country/intl-country.component.spec.ts +33 -0
  22. package/projects/intl/src/lib/country/intl-country.component.ts +66 -0
  23. package/projects/intl/src/lib/currency/intl-currency.component.css +0 -0
  24. package/projects/intl/src/lib/currency/intl-currency.component.html +7 -0
  25. package/projects/intl/src/lib/currency/intl-currency.component.spec.ts +74 -0
  26. package/projects/intl/src/lib/currency/intl-currency.component.ts +46 -0
  27. package/projects/intl/src/lib/register.ts +36 -0
  28. package/projects/intl/src/public-api.ts +8 -0
  29. package/projects/intl/src/test-setup.ts +18 -0
  30. package/projects/intl/tsconfig.lib.json +14 -0
  31. package/projects/intl/tsconfig.lib.prod.json +11 -0
  32. package/projects/intl/tsconfig.spec.json +18 -0
  33. package/projects/intl/vitest.config.ts +19 -0
  34. package/projects/intl-plugin/federation.config.js +44 -0
  35. package/projects/intl-plugin/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -0
  36. package/projects/intl-plugin/public/favicon.ico +0 -0
  37. package/projects/intl-plugin/public/pluginicon.png +0 -0
  38. package/projects/intl-plugin/src/app/app.component.css +0 -0
  39. package/projects/intl-plugin/src/app/app.component.html +3 -0
  40. package/projects/intl-plugin/src/app/app.component.spec.ts +33 -0
  41. package/projects/intl-plugin/src/app/app.component.ts +23 -0
  42. package/projects/intl-plugin/src/app/app.config.ts +19 -0
  43. package/projects/intl-plugin/src/app/app.routes.ts +7 -0
  44. package/projects/intl-plugin/src/app/test-component/test.component.css +0 -0
  45. package/projects/intl-plugin/src/app/test-component/test.component.html +28 -0
  46. package/projects/intl-plugin/src/app/test-component/test.component.spec.ts +30 -0
  47. package/projects/intl-plugin/src/app/test-component/test.component.ts +53 -0
  48. package/projects/intl-plugin/src/bootstrap.ts +6 -0
  49. package/projects/intl-plugin/src/index.html +13 -0
  50. package/projects/intl-plugin/src/main.ts +6 -0
  51. package/projects/intl-plugin/src/styles.css +4 -0
  52. package/projects/intl-plugin/src/test-setup.ts +18 -0
  53. package/projects/intl-plugin/tsconfig.app.json +15 -0
  54. package/projects/intl-plugin/tsconfig.federation.json +13 -0
  55. package/projects/intl-plugin/tsconfig.spec.json +18 -0
  56. package/projects/intl-plugin/vitest.config.ts +19 -0
  57. package/rush-logs/xt-plugin-i11l.build.error.log +8 -0
  58. package/rush-logs/xt-plugin-i11l.build.log +23 -0
  59. package/rush-logs/xt-plugin-intl.build-deploy-latest.error.log +43 -0
  60. package/rush-logs/xt-plugin-intl.build-deploy-latest.log +80 -0
  61. package/rush-logs/xt-plugin-intl.build-deploy-next.error.log +10 -0
  62. package/rush-logs/xt-plugin-intl.build-deploy-next.log +29 -0
  63. package/rush-logs/xt-plugin-intl.build.error.log +9 -0
  64. package/rush-logs/xt-plugin-intl.build.log +24 -0
  65. package/rush-logs/xt-plugin-intl.test.log +50 -0
  66. package/tsconfig.json +36 -0
@@ -0,0 +1,19 @@
1
+ /// <reference types="vitest" />
2
+ import { defineConfig } from 'vite';
3
+
4
+ import angular from '@analogjs/vite-plugin-angular';
5
+ import tsconfigPaths from 'vite-tsconfig-paths';
6
+
7
+ export default defineConfig(({ mode }) => ({
8
+ plugins: [angular(), tsconfigPaths()],
9
+ test: {
10
+ globals: true,
11
+ setupFiles: ['src/test-setup.ts'],
12
+ environment: 'jsdom',
13
+ include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
14
+ reporters: ['default']
15
+ },
16
+ define: {
17
+ 'import.meta.vitest': mode !== 'production',
18
+ },
19
+ }));
@@ -0,0 +1,44 @@
1
+ const { withNativeFederation, shareAll, share } = require('@angular-architects/native-federation/config');
2
+
3
+ module.exports = withNativeFederation({
4
+
5
+ name: 'intl-plugin',
6
+
7
+ exposes: {
8
+ './IntlCurrencyComponent': './projects/intl/src/lib/currency/intl-currency.component.ts',
9
+ './IntlCountryComponent': './projects/intl/src/lib/country/intl-country.component.ts',
10
+ './Register': './projects/intl/src/lib/register.ts'
11
+ },
12
+
13
+ shared: {
14
+ ...shareAll({ singleton: true, strictVersion: true, requiredVersion: 'auto' }),
15
+ ...share({
16
+ "@primeuix/themes/aura": {
17
+ singleton: true,
18
+ strictVersion: true,
19
+ requiredVersion: "auto",
20
+ includeSecondaries: false,
21
+ build: 'separate',
22
+ packageInfo: {
23
+ entryPoint: 'node_modules/@primeuix/themes/dist/aura/index.mjs'
24
+ }
25
+ }
26
+ })},
27
+ features: {
28
+ ignoreUnusedDeps:true
29
+ },
30
+ skip: [
31
+ 'rxjs/ajax',
32
+ 'rxjs/fetch',
33
+ 'rxjs/testing',
34
+ 'rxjs/webSocket',
35
+ // Add further packages you don't need at runtime
36
+ 'chart.js/auto',
37
+ 'primeng/chart',
38
+ 'primeicons'
39
+ ]
40
+
41
+ // Please read our FAQ about sharing libs:
42
+ // https://shorturl.at/jmzH0
43
+
44
+ });
@@ -0,0 +1 @@
1
+ {"version":"3.2.4","results":[[":src/app/app.component.spec.ts",{"duration":139.60681699999986,"failed":false}],[":src/app/test-component/test.component.spec.ts",{"duration":425.711045,"failed":false}]]}
File without changes
@@ -0,0 +1,3 @@
1
+ <h1>Sample Plugin Testing app</h1>
2
+
3
+ <router-outlet />
@@ -0,0 +1,33 @@
1
+ import { TestBed } from '@angular/core/testing';
2
+ import { AppComponent } from './app.component';
3
+ import { provideZonelessChangeDetection } from '@angular/core';
4
+ import { beforeEach, describe, expect, it } from 'vitest';
5
+
6
+ describe('AppComponent', () => {
7
+
8
+ beforeEach(async () => {
9
+ await TestBed.configureTestingModule({
10
+ imports: [AppComponent],
11
+ providers: [provideZonelessChangeDetection()]
12
+ }).compileComponents();
13
+ });
14
+
15
+ it('should create the app', () => {
16
+ const fixture = TestBed.createComponent(AppComponent);
17
+ const app = fixture.componentInstance;
18
+ expect(app).toBeTruthy();
19
+ });
20
+
21
+ it(`should have the 'test' title`, () => {
22
+ const fixture = TestBed.createComponent(AppComponent);
23
+ const app = fixture.componentInstance;
24
+ expect(app.title).toEqual('SampleTester');
25
+ });
26
+
27
+ it('should render title', () => {
28
+ const fixture = TestBed.createComponent(AppComponent);
29
+ fixture.detectChanges();
30
+ const compiled = fixture.nativeElement as HTMLElement;
31
+ expect(compiled.querySelector('h1')?.textContent).toContain('Testing app');
32
+ });
33
+ });
@@ -0,0 +1,23 @@
1
+ import { Component, inject } from '@angular/core';
2
+ import { RouterOutlet } from '@angular/router';
3
+ import { ButtonModule } from 'primeng/button';
4
+ import { ToolbarModule } from 'primeng/toolbar';
5
+ import { XtResolverService } from 'xt-components';
6
+ import { registerInternationalPlugin } from '../../../intl/src/lib/register';
7
+
8
+ @Component({
9
+ selector: 'app-root',
10
+ standalone: true,
11
+ imports: [RouterOutlet, ToolbarModule, ButtonModule],
12
+ templateUrl: './app.component.html',
13
+ styleUrl: './app.component.css'
14
+ })
15
+ export class AppComponent {
16
+ title = 'SampleTester';
17
+
18
+ protected resolverService = inject (XtResolverService);
19
+
20
+ constructor () {
21
+ registerInternationalPlugin(this.resolverService);
22
+ }
23
+ }
@@ -0,0 +1,19 @@
1
+ import { ApplicationConfig, provideZonelessChangeDetection} from '@angular/core';
2
+ import { provideRouter } from '@angular/router';
3
+
4
+ import { routes } from './app.routes';
5
+ import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
6
+ import { providePrimeNG } from 'primeng/config';
7
+ import Aura from '@primeuix/themes/aura';
8
+
9
+ export const appConfig: ApplicationConfig = {
10
+ providers: [
11
+ provideZonelessChangeDetection(),
12
+ provideAnimationsAsync(),
13
+ providePrimeNG({
14
+ theme: {
15
+ preset: Aura
16
+ }
17
+ }),
18
+ provideRouter(routes)]
19
+ };
@@ -0,0 +1,7 @@
1
+ import { Routes } from '@angular/router';
2
+ import { TestComponent } from './test-component/test.component';
3
+
4
+ export const routes: Routes = [{
5
+ path:'', component:TestComponent
6
+ }
7
+ ];
@@ -0,0 +1,28 @@
1
+ <h2>Testing International components</h2>
2
+
3
+ <div class="grid grid-cols-2 gap-4">
4
+ <div>
5
+ <form [formGroup]="currencyForm">
6
+ <label for="currency">Please select a currency</label>
7
+ <xt-render id="currency" displayMode="FULL_EDITABLE" [formGroup]="currencyForm" subName="currency" [componentType]="IntlCurrencyComponent" (outputs)="outputChanged($event)" ></xt-render>
8
+ </form>
9
+ <br/>
10
+ Form Value is {{currencyForm.value | json}}, Form is {{currencyForm.pristine?"pristine":"Dirty"}}
11
+ <br/>
12
+ Last currency selected : {{lastCurrencySelected()}}
13
+ </div>
14
+ <div>
15
+ <form [formGroup]="countryForm">
16
+ <label for="currency">Please select a country</label>
17
+ <xt-render id="country" displayMode="FULL_EDITABLE" [formGroup]="countryForm" subName="country" [componentType]="IntlCountryComponent" (outputs)="countryChanged($event)" ></xt-render>
18
+ </form>
19
+ <br/>
20
+ Form Value is {{countryForm.value | json}}, Form is {{countryForm.pristine?"pristine":"Dirty"}}
21
+ <br/>
22
+ @let lastCountry = lastCountrySelected();
23
+ Last currency selected :
24
+ @if (lastCountry!=null) {
25
+ <br /><xt-render id="countryview" displayMode="FULL_VIEW" [componentType]="IntlCountryComponent" [value]="lastCountry" ></xt-render>
26
+ }
27
+ </div>
28
+ </div>
@@ -0,0 +1,30 @@
1
+ import { ComponentFixture, TestBed } from '@angular/core/testing';
2
+
3
+ import { TestComponent } from './test.component';
4
+ import { provideZonelessChangeDetection } from '@angular/core';
5
+ import { beforeEach, describe, expect, it } from 'vitest';
6
+ import { XtResolverService } from 'xt-components';
7
+ import { registerInternationalPlugin } from '../../../../intl/src/lib/register';
8
+
9
+ describe('TestComponent', () => {
10
+ let component: TestComponent;
11
+ let fixture: ComponentFixture<TestComponent>;
12
+
13
+ beforeEach(async () => {
14
+ await TestBed.configureTestingModule({
15
+ imports: [TestComponent],
16
+ providers: [provideZonelessChangeDetection()]
17
+ })
18
+ .compileComponents();
19
+
20
+ registerInternationalPlugin(TestBed.inject(XtResolverService));
21
+
22
+ fixture = TestBed.createComponent(TestComponent);
23
+ component = fixture.componentInstance;
24
+ fixture.detectChanges();
25
+ });
26
+
27
+ it('should create', () => {
28
+ expect(component).toBeTruthy();
29
+ });
30
+ });
@@ -0,0 +1,53 @@
1
+ import { ChangeDetectionStrategy, Component, inject, signal } from '@angular/core';
2
+ import { XtComponentOutput, XtRenderComponent } from 'xt-components';
3
+ import { FormBuilder, FormsModule, ReactiveFormsModule } from '@angular/forms';
4
+ import { JsonPipe } from '@angular/common';
5
+ import { IntlCurrencyComponent } from '../../../../intl/src/lib/currency/intl-currency.component';
6
+ import { IntlCountryComponent } from '../../../../intl/src/lib/country/intl-country.component';
7
+
8
+ @Component({
9
+ selector: 'app-plugin-tester-component',
10
+ standalone: true,
11
+ imports: [ReactiveFormsModule, XtRenderComponent, FormsModule, JsonPipe],
12
+ templateUrl: './test.component.html',
13
+ styleUrl: './test.component.css',
14
+ changeDetection: ChangeDetectionStrategy.OnPush
15
+ })
16
+ export class TestComponent {
17
+
18
+ builder = inject(FormBuilder);
19
+
20
+ currencyForm = this.builder.group ({
21
+ currency: ['EUR']
22
+ });
23
+
24
+ countryForm = this.builder.group ({
25
+ country: ['FRA']
26
+ });
27
+
28
+ lastCurrencySelected=signal<string|undefined>(undefined)
29
+ lastCountrySelected=signal<string|undefined>(undefined)
30
+
31
+ constructor () {
32
+ }
33
+
34
+ protected readonly IntlCurrencyComponent = IntlCurrencyComponent;
35
+
36
+ outputChanged(newValue: XtComponentOutput | null) {
37
+ if( newValue?.valueSelected!=null) {
38
+ newValue?.valueSelected.subscribe (selected => {
39
+ this.lastCurrencySelected.set(selected);
40
+ })
41
+ }
42
+ }
43
+
44
+ countryChanged(newValue: XtComponentOutput | null) {
45
+ if( newValue?.valueSelected!=null) {
46
+ newValue?.valueSelected.subscribe (selected => {
47
+ this.lastCountrySelected.set(selected);
48
+ })
49
+ }
50
+ }
51
+
52
+ protected readonly IntlCountryComponent = IntlCountryComponent;
53
+ }
@@ -0,0 +1,6 @@
1
+ import { bootstrapApplication } from '@angular/platform-browser';
2
+ import { appConfig } from './app/app.config';
3
+ import { AppComponent } from './app/app.component';
4
+
5
+ bootstrapApplication(AppComponent, appConfig)
6
+ .catch((err) => console.error(err));
@@ -0,0 +1,13 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Test</title>
6
+ <base href="/">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1">
8
+ <link rel="icon" type="image/x-icon" href="favicon.ico">
9
+ </head>
10
+ <body>
11
+ <app-root></app-root>
12
+ </body>
13
+ </html>
@@ -0,0 +1,6 @@
1
+ import { initFederation } from '@angular-architects/native-federation';
2
+
3
+ initFederation()
4
+ .catch(err => console.error(err))
5
+ .then(_ => import('./bootstrap'))
6
+ .catch(err => console.error(err));
@@ -0,0 +1,4 @@
1
+ /* You can add global styles to this file, and also import other style files */
2
+ @import "tailwindcss";
3
+
4
+ @import "primeicons/primeicons.css";
@@ -0,0 +1,18 @@
1
+ import "@angular/compiler";
2
+
3
+ import { BrowserTestingModule, platformBrowserTesting } from '@angular/platform-browser/testing';
4
+
5
+ import { getTestBed } from '@angular/core/testing';
6
+ import { NgModule, provideZonelessChangeDetection } from '@angular/core';
7
+
8
+
9
+ @NgModule({
10
+ imports: [BrowserTestingModule],
11
+ providers: [provideZonelessChangeDetection()],
12
+ })
13
+ export class TestingModule {}
14
+
15
+ getTestBed().initTestEnvironment(
16
+ [TestingModule],
17
+ platformBrowserTesting()
18
+ );
@@ -0,0 +1,15 @@
1
+ /* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
2
+ /* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
3
+ {
4
+ "extends": "../../tsconfig.json",
5
+ "compilerOptions": {
6
+ "outDir": "../../out-tsc/app",
7
+ "types": []
8
+ },
9
+ "files": [
10
+ "src/main.ts"
11
+ ],
12
+ "include": [
13
+ "src/**/*.d.ts"
14
+ ]
15
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../../out-tsc/app",
5
+ "types": []
6
+ },
7
+ "files": [
8
+ "src/main.ts"
9
+ ],
10
+ "include": [
11
+ "src/**/*.d.ts"
12
+ ]
13
+ }
@@ -0,0 +1,18 @@
1
+ /* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
2
+ /* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
3
+ {
4
+ "extends": "../../tsconfig.json",
5
+ "compilerOptions": {
6
+ "outDir": "../../out-tsc/spec",
7
+ "target": "es2016",
8
+ "types": [
9
+ "vitest/globals","node"
10
+ ],
11
+ "emitDecoratorMetadata": true
12
+ },
13
+ "files": ["src/test-setup.ts"],
14
+ "include": [
15
+ "src/**/*.spec.ts",
16
+ "src/**/*.d.ts"
17
+ ]
18
+ }
@@ -0,0 +1,19 @@
1
+ /// <reference types="vitest" />
2
+ import { defineConfig } from 'vite';
3
+
4
+ import angular from '@analogjs/vite-plugin-angular';
5
+ import tsconfigPaths from 'vite-tsconfig-paths';
6
+
7
+ export default defineConfig(({ mode }) => ({
8
+ plugins: [angular(), tsconfigPaths()],
9
+ test: {
10
+ globals: true,
11
+ setupFiles: ['src/test-setup.ts'],
12
+ environment: 'jsdom',
13
+ include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
14
+ reporters: ['default']
15
+ },
16
+ define: {
17
+ 'import.meta.vitest': mode !== 'production',
18
+ },
19
+ }));
@@ -0,0 +1,8 @@
1
+ - Compiling with Angular sources in Ivy full compilation mode.
2
+ ✔ Compiling with Angular sources in Ivy full compilation mode.
3
+ ✔ Generating FESM bundles
4
+ - Copying assets
5
+ ✔ Copying assets
6
+ - Writing package manifest
7
+ ✔ Writing package manifest
8
+ ✔ Built xt-plugin-i11l
@@ -0,0 +1,23 @@
1
+ Invoking: ng build i11l --configuration=development
2
+ Building Angular Package
3
+
4
+ ------------------------------------------------------------------------------
5
+ Building entry point 'xt-plugin-i11l'
6
+ ------------------------------------------------------------------------------
7
+ - Compiling with Angular sources in Ivy full compilation mode.
8
+ ✔ Compiling with Angular sources in Ivy full compilation mode.
9
+ ✔ Generating FESM bundles
10
+ - Copying assets
11
+ ✔ Copying assets
12
+ - Writing package manifest
13
+ ✔ Writing package manifest
14
+ ✔ Built xt-plugin-i11l
15
+
16
+ ------------------------------------------------------------------------------
17
+ Built Angular Package
18
+ - from: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-i11l/projects/i11l
19
+ - to: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-i11l/dist/xt-plugin-i11l
20
+ ------------------------------------------------------------------------------
21
+
22
+ Build at: 2025-07-14T12:59:15.159Z - Time: 6131ms
23
+
@@ -0,0 +1,43 @@
1
+ - Compiling with Angular sources in partial compilation mode.
2
+ ✔ Compiling with Angular sources in partial compilation mode.
3
+ - Writing FESM and DTS bundles
4
+ ✔ Writing FESM and DTS bundles
5
+ - Copying assets
6
+ ✔ Copying assets
7
+ - Writing package manifest
8
+ ✔ Writing package manifest
9
+ ✔ Built xt-plugin-intl
10
+ WARN No entry point found for @primeuix/utils/zindex
11
+ 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
12
+ WARN No meta data found for shared lib @primeuix/utils/zindex
13
+ WARN No entry point found for @primeuix/utils/uuid
14
+ 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
15
+ WARN No meta data found for shared lib @primeuix/utils/uuid
16
+ WARN No entry point found for @primeuix/utils/object
17
+ 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
18
+ WARN No meta data found for shared lib @primeuix/utils/object
19
+ WARN No entry point found for @primeuix/utils/mergeprops
20
+ 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
21
+ WARN No meta data found for shared lib @primeuix/utils/mergeprops
22
+ WARN No entry point found for @primeuix/utils/eventbus
23
+ 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
24
+ WARN No meta data found for shared lib @primeuix/utils/eventbus
25
+ WARN No entry point found for @primeuix/utils/dom
26
+ 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
27
+ WARN No meta data found for shared lib @primeuix/utils/dom
28
+ WARN No entry point found for @primeuix/utils/classnames
29
+ 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
30
+ WARN No meta data found for shared lib @primeuix/utils/classnames
31
+ WARN No meta data found for shared lib @primeuix/styles/base
32
+ WARN No meta data found for shared lib @primeuix/styles/toolbar
33
+ WARN No meta data found for shared lib @primeuix/styles/button
34
+ WARN No meta data found for shared lib @primeuix/styles/ripple
35
+ WARN No meta data found for shared lib @primeuix/styles/badge
36
+ WARN No meta data found for shared lib @primeuix/styles/inputtext
37
+ WARN No meta data found for shared lib @primeuix/styles/inputnumber
38
+ WARN No meta data found for shared lib @primeuix/styles/autocomplete
39
+ WARN No meta data found for shared lib @primeuix/styles/chip
40
+ WARN No meta data found for shared lib eta/core
41
+ WARN No entry point found for @primeuix/themes/aura
42
+ 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
43
+ WARN No meta data found for shared lib @primeuix/themes/aura
@@ -0,0 +1,80 @@
1
+ Invoking: BUILD=production STAGE=latest npm run build-deploy
2
+
3
+ > xt-plugin-intl@0.5.5 build-deploy
4
+ > 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/"
5
+
6
+ Building Angular Package
7
+
8
+ ------------------------------------------------------------------------------
9
+ Building entry point 'xt-plugin-intl'
10
+ ------------------------------------------------------------------------------
11
+ - Compiling with Angular sources in partial compilation mode.
12
+ ✔ Compiling with Angular sources in partial compilation mode.
13
+ - Writing FESM and DTS bundles
14
+ ✔ Writing FESM and DTS bundles
15
+ - Copying assets
16
+ ✔ Copying assets
17
+ - Writing package manifest
18
+ ✔ Writing package manifest
19
+ ✔ Built xt-plugin-intl
20
+
21
+ ------------------------------------------------------------------------------
22
+ Built Angular Package
23
+ - from: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/projects/intl
24
+ - to: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/dist/xt-plugin-intl
25
+ ------------------------------------------------------------------------------
26
+
27
+ Build at: 2026-01-07T09:09:09.613Z - Time: 5162ms
28
+
29
+ WARN No entry point found for @primeuix/utils/zindex
30
+ 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
31
+ WARN No meta data found for shared lib @primeuix/utils/zindex
32
+ WARN No entry point found for @primeuix/utils/uuid
33
+ 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
34
+ WARN No meta data found for shared lib @primeuix/utils/uuid
35
+ WARN No entry point found for @primeuix/utils/object
36
+ 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
37
+ WARN No meta data found for shared lib @primeuix/utils/object
38
+ WARN No entry point found for @primeuix/utils/mergeprops
39
+ 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
40
+ WARN No meta data found for shared lib @primeuix/utils/mergeprops
41
+ WARN No entry point found for @primeuix/utils/eventbus
42
+ 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
43
+ WARN No meta data found for shared lib @primeuix/utils/eventbus
44
+ WARN No entry point found for @primeuix/utils/dom
45
+ 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
46
+ WARN No meta data found for shared lib @primeuix/utils/dom
47
+ WARN No entry point found for @primeuix/utils/classnames
48
+ 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
49
+ WARN No meta data found for shared lib @primeuix/utils/classnames
50
+ WARN No meta data found for shared lib @primeuix/styles/base
51
+ WARN No meta data found for shared lib @primeuix/styles/toolbar
52
+ WARN No meta data found for shared lib @primeuix/styles/button
53
+ WARN No meta data found for shared lib @primeuix/styles/ripple
54
+ WARN No meta data found for shared lib @primeuix/styles/badge
55
+ WARN No meta data found for shared lib @primeuix/styles/inputtext
56
+ WARN No meta data found for shared lib @primeuix/styles/inputnumber
57
+ WARN No meta data found for shared lib @primeuix/styles/autocomplete
58
+ WARN No meta data found for shared lib @primeuix/styles/chip
59
+ WARN No meta data found for shared lib eta/core
60
+ WARN No entry point found for @primeuix/themes/aura
61
+ 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
62
+ WARN No meta data found for shared lib @primeuix/themes/aura
63
+ INFO Building federation artefacts
64
+ ❯ Building...
65
+ ✔ Building...
66
+ Initial chunk files | Names | Raw size | Estimated transfer size
67
+ polyfills-XUYJO5JA.js | polyfills | 39.91 kB | 13.52 kB
68
+ styles-GEVVBWJT.css | styles | 16.92 kB | 3.54 kB
69
+ main-OJ6HHWUE.js | main | 2.74 kB | 1.15 kB
70
+ chunk-2NFLSA4Y.js | - | 449 bytes | 449 bytes
71
+
72
+ | Initial total | 60.03 kB | 18.66 kB
73
+
74
+ Lazy chunk files | Names | Raw size | Estimated transfer size
75
+ chunk-FEQGULQH.js | bootstrap | 12.42 kB | 2.72 kB
76
+
77
+ Application bundle generation complete. [11.934 seconds] - 2026-01-07T09:10:08.612Z
78
+
79
+ Output location: /home/gc-garunda/devs/dont-code/github/ng-xtend/dist/latest/intl-plugin
80
+
@@ -0,0 +1,10 @@
1
+ - Compiling with Angular sources in full compilation mode.
2
+ ✔ Compiling with Angular sources in full compilation mode.
3
+ ✔ Generating FESM and DTS bundles
4
+ - Copying assets
5
+ ✔ Copying assets
6
+ - Writing package manifest
7
+ ✔ Writing package manifest
8
+ ✔ Built xt-plugin-intl
9
+ An unhandled exception occurred: Cannot read properties of undefined (reading 'split')
10
+ See "/tmp/ng-TH2vAd/angular-errors.log" for further details.
@@ -0,0 +1,29 @@
1
+ Invoking: BUILD=development STAGE=next npm run build-deploy
2
+
3
+ > xt-plugin-intl@0.0.0 build-deploy
4
+ > 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
5
+
6
+ Building Angular Package
7
+
8
+ ------------------------------------------------------------------------------
9
+ Building entry point 'xt-plugin-intl'
10
+ ------------------------------------------------------------------------------
11
+ - Compiling with Angular sources in full compilation mode.
12
+ ✔ Compiling with Angular sources in full compilation mode.
13
+ ✔ Generating FESM and DTS bundles
14
+ - Copying assets
15
+ ✔ Copying assets
16
+ - Writing package manifest
17
+ ✔ Writing package manifest
18
+ ✔ Built xt-plugin-intl
19
+
20
+ ------------------------------------------------------------------------------
21
+ Built Angular Package
22
+ - from: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/projects/intl
23
+ - to: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/dist/xt-plugin-intl
24
+ ------------------------------------------------------------------------------
25
+
26
+ Build at: 2025-09-04T10:04:24.206Z - Time: 6201ms
27
+
28
+ An unhandled exception occurred: Cannot read properties of undefined (reading 'split')
29
+ See "/tmp/ng-TH2vAd/angular-errors.log" for further details.
@@ -0,0 +1,9 @@
1
+ - Compiling with Angular sources in full compilation mode.
2
+ ✔ Compiling with Angular sources in full compilation mode.
3
+ - Writing FESM and DTS bundles
4
+ ✔ Writing FESM and DTS bundles
5
+ - Copying assets
6
+ ✔ Copying assets
7
+ - Writing package manifest
8
+ ✔ Writing package manifest
9
+ ✔ Built xt-plugin-intl
@@ -0,0 +1,24 @@
1
+ Invoking: ng build intl --configuration=development
2
+ Building Angular Package
3
+
4
+ ------------------------------------------------------------------------------
5
+ Building entry point 'xt-plugin-intl'
6
+ ------------------------------------------------------------------------------
7
+ - Compiling with Angular sources in full compilation mode.
8
+ ✔ Compiling with Angular sources in full compilation mode.
9
+ - Writing FESM and DTS bundles
10
+ ✔ Writing FESM and DTS bundles
11
+ - Copying assets
12
+ ✔ Copying assets
13
+ - Writing package manifest
14
+ ✔ Writing package manifest
15
+ ✔ Built xt-plugin-intl
16
+
17
+ ------------------------------------------------------------------------------
18
+ Built Angular Package
19
+ - from: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/projects/intl
20
+ - to: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/dist/xt-plugin-intl
21
+ ------------------------------------------------------------------------------
22
+
23
+ Build at: 2025-12-31T08:42:50.339Z - Time: 5200ms
24
+