@eui/tools 6.12.65 → 6.13.1

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 (84) hide show
  1. package/.version.properties +1 -1
  2. package/CHANGELOG.md +18 -0
  3. package/package.json +1 -1
  4. package/scripts/app/public/package-init.js +3 -2
  5. package/scripts/csdr/cli/constants.js +4 -0
  6. package/scripts/csdr/cli/package-build-frontend.js +10 -0
  7. package/scripts/csdr/cli/package.js +4 -0
  8. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/.eslintrc.json +43 -0
  9. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/assets/i18n/en.json +6 -0
  10. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/assets/i18n/fr.json +6 -0
  11. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/dependencies-base.json +2 -0
  12. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/dependencies-composite.json +4 -0
  13. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/gitignore_TO_REPLACE +46 -0
  14. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/karma.conf.js +7 -0
  15. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/ng-package.json +7 -0
  16. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/package.json +4 -0
  17. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/src/dummy.spec.ts.TO_REPLACE +5 -0
  18. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/src/index.ts +2 -0
  19. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/src/lib/components/main.component.html +42 -0
  20. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/src/lib/components/main.component.ts +8 -0
  21. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/src/lib/constants.ts +1 -0
  22. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/src/lib/containers/container.component.ts +28 -0
  23. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/src/lib/module.ts +80 -0
  24. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/src/lib/routing-module.ts +23 -0
  25. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/src/test.ts.TO_REPLACE +21 -0
  26. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/tsconfig.lib.json +33 -0
  27. package/scripts/csdr/cli/skeletons/package/frontend/17.x/default/tsconfig.spec.json +17 -0
  28. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/.eslintrc.json +43 -0
  29. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/assets/i18n/en.json +6 -0
  30. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/assets/i18n/fr.json +6 -0
  31. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/dependencies-base.json +2 -0
  32. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/dependencies-composite.json +4 -0
  33. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/gitignore_TO_REPLACE +46 -0
  34. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/karma.conf.js +7 -0
  35. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/ng-package.json +7 -0
  36. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/package.json +4 -0
  37. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/src/dummy.spec.ts.TO_REPLACE +5 -0
  38. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/src/index.ts +2 -0
  39. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/src/lib/components/participant/participant.component.html +1 -0
  40. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/src/lib/components/participant/participant.component.ts +19 -0
  41. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/src/lib/module.ts +24 -0
  42. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/src/test.ts.TO_REPLACE +21 -0
  43. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/tsconfig.lib.json +33 -0
  44. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-default/tsconfig.spec.json +17 -0
  45. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/.eslintrc.json +79 -0
  46. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/assets/i18n/en.json +6 -0
  47. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/assets/i18n/fr.json +6 -0
  48. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/dependencies-base.json +2 -0
  49. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/dependencies-composite.json +3 -0
  50. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/gitignore_TO_REPLACE +46 -0
  51. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/karma.conf.js +7 -0
  52. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/ng-package.json +7 -0
  53. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/package.json +4 -0
  54. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/dummy.spec.ts.TO_REPLACE +5 -0
  55. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/index.ts +4 -0
  56. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/blocks/sample/components/sample.component.html +1 -0
  57. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/blocks/sample/components/sample.component.ts +14 -0
  58. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/blocks/sample/containers/container.component.ts +36 -0
  59. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/blocks/sample/models/block.model.ts +5 -0
  60. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/blocks/sample/models/index.ts +1 -0
  61. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/blocks/sample/module.ts +37 -0
  62. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/main/components/sample.component.html +1 -0
  63. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/main/components/sample.component.ts +14 -0
  64. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/main/constants.ts +1 -0
  65. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/main/containers/block-store.service.ts +33 -0
  66. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/main/containers/container.component.ts +44 -0
  67. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/main/containers/generic-block-resolver.service.ts +32 -0
  68. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/main/models/block-type.model.ts +6 -0
  69. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/main/models/block.model.ts +10 -0
  70. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/main/models/index.ts +2 -0
  71. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/main/module.ts +60 -0
  72. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/main/store/actions/block.actions.ts +26 -0
  73. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/main/store/reducers/block.reducer.ts +48 -0
  74. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/main/store/reducers/index.ts +22 -0
  75. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/main/store/selectors/block.selectors.ts +29 -0
  76. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/lib/module.ts +17 -0
  77. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/src/test.ts.TO_REPLACE +21 -0
  78. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/tsconfig.lib.json +33 -0
  79. package/scripts/csdr/cli/skeletons/package/frontend/17.x/participant-ngrx/tsconfig.spec.json +17 -0
  80. package/scripts/csdr/cli/skeletons/virtual-remote/17.x/angular-config.json +8 -0
  81. package/scripts/csdr/cli/skeletons/virtual-remote/17.x/dependencies.json +21 -0
  82. package/scripts/csdr/config/angular.js +8 -2
  83. package/scripts/csdr/config/config-skeletons.js +123 -22
  84. package/scripts/utils/pre-build/injection/app-sources-full-skeleton-eui17/src/_generated/polyfills.ts +86 -0
@@ -0,0 +1,26 @@
1
+ import { Action } from '@ngrx/store';
2
+
3
+ import { Block } from '../../models';
4
+
5
+ export enum BlockActionType {
6
+ UPSERT_BLOCK = '[@module.class.name@ - Block] Upsert block',
7
+ REMOVE_BLOCK = '[@module.class.name@ - Block] Remove block',
8
+ }
9
+
10
+ export class UpsertBlock implements Action {
11
+ readonly type = BlockActionType.UPSERT_BLOCK;
12
+
13
+ constructor(public payload: { block: Block }) {
14
+ }
15
+ }
16
+
17
+ export class RemoveBlock implements Action {
18
+ readonly type = BlockActionType.REMOVE_BLOCK;
19
+
20
+ constructor(public payload: { id: string }) {
21
+ }
22
+ }
23
+
24
+ export type BlockActions =
25
+ UpsertBlock |
26
+ RemoveBlock;
@@ -0,0 +1,48 @@
1
+ import { createSelector } from '@ngrx/store';
2
+ import { createEntityAdapter, Dictionary, EntityAdapter, EntityState } from '@ngrx/entity';
3
+
4
+ import {
5
+ BlockActionType,
6
+ BlockActions,
7
+ } from '../actions/block.actions';
8
+
9
+ import { Block } from '../../models';
10
+
11
+ export interface State extends EntityState<Block> {
12
+ }
13
+
14
+ export const adapter: EntityAdapter<Block> = createEntityAdapter<Block>({
15
+ selectId: (block: Block) => block.id,
16
+ });
17
+
18
+ export const initialState: State = adapter.getInitialState({});
19
+
20
+ export function reducer(state = initialState, action: BlockActions): State {
21
+ switch (action.type) {
22
+ case BlockActionType.UPSERT_BLOCK: {
23
+ return adapter.upsertOne(action.payload.block, state);
24
+ }
25
+ case BlockActionType.REMOVE_BLOCK: {
26
+ return adapter.removeOne(action.payload.id, state);
27
+ }
28
+ default: {
29
+ return state;
30
+ }
31
+ }
32
+ }
33
+
34
+ export const {
35
+ selectIds: getIds,
36
+ selectEntities: getEntities,
37
+ selectAll: getAll,
38
+ selectTotal: getTotal,
39
+ } = adapter.getSelectors();
40
+
41
+ export const getEntityById = (id: string) => {
42
+ return createSelector(
43
+ getEntities,
44
+ (entities: Dictionary<Block>) => {
45
+ return entities[id];
46
+ },
47
+ );
48
+ };
@@ -0,0 +1,22 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import { ActionReducerMap } from '@ngrx/store';
3
+
4
+ import * as fromBlock from './block.reducer';
5
+
6
+ export interface State {
7
+ block: fromBlock.State;
8
+ }
9
+
10
+ // -----------------
11
+ // ------------ AOT
12
+ export const TOKEN = new InjectionToken<ActionReducerMap<State>>('@module.class.name@Reducers');
13
+
14
+ export function getReducers(): ActionReducerMap<State, any> {
15
+ return {
16
+ block: fromBlock.reducer,
17
+ };
18
+ }
19
+
20
+ export const reducerProvider = [
21
+ { provide: TOKEN, useFactory: getReducers },
22
+ ];
@@ -0,0 +1,29 @@
1
+ import {
2
+ createSelector,
3
+ createFeatureSelector,
4
+ } from '@ngrx/store';
5
+
6
+ import { State } from '../reducers';
7
+
8
+ import * as fromBlock from '../reducers/block.reducer';
9
+
10
+ import { Block } from '../../models';
11
+
12
+ import { namespace } from '../../constants';
13
+
14
+ // -----------------
15
+ // --- feature selector
16
+ const get@module.class.name@State = createFeatureSelector<State>(namespace);
17
+
18
+ // -----------------
19
+ // ----- block
20
+ const getBlockState = createSelector(get@module.class.name@State, state => {
21
+ return state.block;
22
+ });
23
+
24
+ export const getBlockById = (id: string) => {
25
+ return createSelector(
26
+ getBlockState,
27
+ fromBlock.getEntityById(id),
28
+ );
29
+ };
@@ -0,0 +1,17 @@
1
+ import { NgModule } from '@angular/core';
2
+
3
+ import { MainParticipantModule } from './main/module';
4
+
5
+ import { @module.class.name@BlockSampleModule } from './blocks/sample/module';
6
+
7
+ @NgModule({
8
+ imports: [
9
+ MainParticipantModule,
10
+ @module.class.name@BlockSampleModule,
11
+ ],
12
+ exports: [
13
+ MainParticipantModule,
14
+ ],
15
+ })
16
+ export class @module.class.name@Module {
17
+ }
@@ -0,0 +1,21 @@
1
+ // This file is required by karma.conf.js and loads recursively all the .spec and framework files
2
+
3
+ import 'zone.js/dist/zone';
4
+ import 'zone.js/dist/zone-testing';
5
+ import { getTestBed } from '@angular/core/testing';
6
+ import {
7
+ BrowserDynamicTestingModule,
8
+ platformBrowserDynamicTesting,
9
+ } from '@angular/platform-browser-dynamic/testing';
10
+
11
+ declare const require: any;
12
+
13
+ // First, initialize the Angular testing environment.
14
+ getTestBed().initTestEnvironment(
15
+ BrowserDynamicTestingModule,
16
+ platformBrowserDynamicTesting(),
17
+ );
18
+ // Then we find all the tests.
19
+ const context = require.context('./', true, /\.spec\.ts$/);
20
+ // And load the modules.
21
+ context.keys().map(context);
@@ -0,0 +1,33 @@
1
+ {
2
+ "extends": "../../tsconfig.build.json",
3
+ "compilerOptions": {
4
+ "outDir": "./out-tsc/lib",
5
+ "target": "ES2022",
6
+ "module": "ES2022",
7
+ "moduleResolution": "node",
8
+ "declaration": true,
9
+ "sourceMap": true,
10
+ "inlineSources": true,
11
+ "emitDecoratorMetadata": true,
12
+ "experimentalDecorators": true,
13
+ "useDefineForClassFields": false,
14
+ "importHelpers": true,
15
+ "types": [],
16
+ "lib": [
17
+ "ES2022",
18
+ "dom"
19
+ ]
20
+ },
21
+ "angularCompilerOptions": {
22
+ "annotateForClosureCompiler": true,
23
+ "skipTemplateCodegen": true,
24
+ "strictMetadataEmit": true,
25
+ "fullTemplateTypeCheck": true,
26
+ "strictInjectionParameters": true,
27
+ "enableResourceInlining": true
28
+ },
29
+ "exclude": [
30
+ "src/test.ts",
31
+ "**/*.spec.ts"
32
+ ]
33
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "extends": "../../tsconfig.build.json",
3
+ "compilerOptions": {
4
+ "outDir": "./out-tsc/spec",
5
+ "types": [
6
+ "jasmine",
7
+ "node"
8
+ ]
9
+ },
10
+ "files": [
11
+ "src/test.ts"
12
+ ],
13
+ "include": [
14
+ "**/*.spec.ts",
15
+ "**/*.d.ts"
16
+ ]
17
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "styles": [
3
+ "node_modules/@eui/styles/dist/styles/eui.css",
4
+ "node_modules/@eui/styles/dist/styles/eui-utilities.css",
5
+ "node_modules/@eui/styles/dist/styles/eui-legacy-bootstrap-utilities.css",
6
+ "node_modules/@eui/styles/dist/styles/eui-legacy-icons-font.css"
7
+ ]
8
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "base": {
3
+ },
4
+ "composite": {
5
+ "@eui/deps-base": "^17.0.0",
6
+ "@module.scope@/@module.name@": "^1.0.0",
7
+ "@mywp/shared": "^6.0.0",
8
+ "@csdr/core": "^6.0.0",
9
+ "@csdr/integration": "^5.0.0"
10
+ },
11
+ "INT": {
12
+ },
13
+ "ACC": {
14
+ },
15
+ "DLT": {
16
+ },
17
+ "TRN": {
18
+ },
19
+ "PROD": {
20
+ }
21
+ }
@@ -22,6 +22,7 @@ const {
22
22
  angularProjectDefFullSkeletonV13,
23
23
  angularProjectDefFullSkeletonV14,
24
24
  angularProjectDefFullSkeletonV17,
25
+ angularProjectDefFullSkeletonV17esbuild,
25
26
  angularProjectDefConfiguration,
26
27
  angularProjectDefConfigurationHost,
27
28
  angularProjectDefConfigurationLight,
@@ -231,8 +232,13 @@ module.exports.registerAngularProjectDef = (project, build = false, element = fa
231
232
  projectDef = JSON.stringify(angularProjectDefFullSkeletonV14);
232
233
  tools.logInfo(`----using angularProjectDefFullSkeletonV14`);
233
234
  } else if (euiVersion === '17.x') {
234
- projectDef = JSON.stringify(angularProjectDefFullSkeletonV17);
235
- tools.logInfo(`----using angularProjectDefFullSkeletonV17`);
235
+ if (project.build.esbuild) {
236
+ projectDef = JSON.stringify(angularProjectDefFullSkeletonV17esbuild);
237
+ tools.logInfo(`----using angularProjectDefFullSkeletonV17esbuild`);
238
+ } else {
239
+ projectDef = JSON.stringify(angularProjectDefFullSkeletonV17);
240
+ tools.logInfo(`----using angularProjectDefFullSkeletonV17`);
241
+ }
236
242
  } else {
237
243
  projectDef = JSON.stringify(angularProjectDefFullSkeleton);
238
244
  tools.logInfo(`----using angularProjectDefFullSkeleton`);
@@ -596,14 +596,8 @@ module.exports.angularProjectDefV17 = {
596
596
  "with": "apps/@project.name@/src/environments/environment.prod.ts"
597
597
  }
598
598
  ],
599
- "optimization": false,
600
599
  "outputHashing": "all",
601
- "sourceMap": false,
602
- "namedChunks": true,
603
- "aot": true,
604
600
  "extractLicenses": true,
605
- "vendorChunk": false,
606
- "buildOptimizer": false,
607
601
  "budgets": [
608
602
  {
609
603
  "type": "initial",
@@ -628,12 +622,7 @@ module.exports.angularProjectDefV17 = {
628
622
  "fonts": true
629
623
  },
630
624
  "outputHashing": "all",
631
- "sourceMap": false,
632
- "namedChunks": true,
633
- "aot": true,
634
625
  "extractLicenses": true,
635
- "vendorChunk": false,
636
- "buildOptimizer": true,
637
626
  "budgets": [
638
627
  {
639
628
  "type": "initial",
@@ -658,12 +647,7 @@ module.exports.angularProjectDefV17 = {
658
647
  "fonts": true
659
648
  },
660
649
  "outputHashing": "all",
661
- "sourceMap": false,
662
- "namedChunks": true,
663
- "aot": true,
664
650
  "extractLicenses": true,
665
- "vendorChunk": false,
666
- "buildOptimizer": true,
667
651
  "budgets": [
668
652
  {
669
653
  "type": "initial",
@@ -673,12 +657,8 @@ module.exports.angularProjectDefV17 = {
673
657
  ]
674
658
  },
675
659
  "development": {
676
- "buildOptimizer": false,
677
660
  "optimization": false,
678
- "vendorChunk": true,
679
- "extractLicenses": false,
680
- "sourceMap": true,
681
- "namedChunks": true
661
+ "sourceMap": true
682
662
  }
683
663
  },
684
664
  "defaultConfiguration": "production"
@@ -1163,9 +1143,130 @@ module.exports.angularProjectDefFullSkeletonV14 = {
1163
1143
  }
1164
1144
  };
1165
1145
 
1146
+ module.exports.angularProjectDefFullSkeletonV17 = {
1147
+ "root": "",
1148
+ "sourceRoot": "apps/@project.name@/src",
1149
+ "projectType": "application",
1150
+ "prefix": "app",
1151
+ "schematics": {
1152
+ "@schematics/angular:component": {
1153
+ "style": "scss"
1154
+ },
1155
+ "@schematics/angular:application": {
1156
+ "strict": true
1157
+ }
1158
+ },
1159
+ "architect": {
1160
+ "build": {
1161
+ "builder": "@angular-devkit/build-angular:browser",
1162
+ "options": {
1163
+ "outputPath": "apps/@project.name@/dist",
1164
+ "index": "apps/@project.name@/src/index.html",
1165
+ "main": "apps/@project.name@/src/_generated/main.ts",
1166
+ "polyfills": "apps/@project.name@/src/_generated/polyfills.ts",
1167
+ "tsConfig": "apps/@project.name@/tsconfig.app.json",
1168
+ "assets": [
1169
+ "apps/@project.name@/src/favicon.ico",
1170
+ "apps/@project.name@/src/assets",
1171
+ {
1172
+ "glob": "**/*",
1173
+ "input": "node_modules/@eui/core/assets/",
1174
+ "output": "./assets"
1175
+ }
1176
+ ],
1177
+ "styles": [
1178
+ ]
1179
+ },
1180
+ "configurations": {
1181
+ "production": {
1182
+ "fileReplacements": [
1183
+ {
1184
+ "replace": "apps/@project.name@/src/_generated/environments/environment.ts",
1185
+ "with": "apps/@project.name@/src/_generated/environments/environment.prod.ts"
1186
+ }
1187
+ ],
1188
+ "optimization": false,
1189
+ "outputHashing": "all",
1190
+ "sourceMap": false,
1191
+ "namedChunks": true,
1192
+ "aot": true,
1193
+ "extractLicenses": true,
1194
+ "vendorChunk": false,
1195
+ "buildOptimizer": false,
1196
+ "budgets": [
1197
+ {
1198
+ "type": "initial",
1199
+ "maximumWarning": "2mb",
1200
+ "maximumError": "10mb"
1201
+ }
1202
+ ]
1203
+ },
1204
+ "production-optimized-no-openid": {
1205
+ "fileReplacements": [
1206
+ {
1207
+ "replace": "apps/@project.name@/src/_generated/environments/environment.ts",
1208
+ "with": "apps/@project.name@/src/_generated/environments/environment.prod.ts"
1209
+ }
1210
+ ],
1211
+ "optimization": {
1212
+ "scripts": true,
1213
+ "styles": {
1214
+ "minify": false,
1215
+ "inlineCritical": true
1216
+ },
1217
+ "fonts": true
1218
+ },
1219
+ "outputHashing": "all",
1220
+ "sourceMap": false,
1221
+ "namedChunks": true,
1222
+ "aot": true,
1223
+ "extractLicenses": true,
1224
+ "vendorChunk": false,
1225
+ "buildOptimizer": true,
1226
+ "budgets": [
1227
+ {
1228
+ "type": "initial",
1229
+ "maximumWarning": "2mb",
1230
+ "maximumError": "10mb"
1231
+ }
1232
+ ]
1233
+ },
1234
+ "development": {
1235
+ "buildOptimizer": false,
1236
+ "optimization": false,
1237
+ "vendorChunk": true,
1238
+ "extractLicenses": false,
1239
+ "sourceMap": true,
1240
+ "namedChunks": true
1241
+ }
1242
+ },
1243
+ "defaultConfiguration": "production"
1244
+ },
1245
+ "serve": {
1246
+ "builder": "@angular-devkit/build-angular:dev-server",
1247
+ "options": {
1248
+ "browserTarget": "@project.name@:build"
1249
+ },
1250
+ "configurations": {
1251
+ "proxy-mock": {
1252
+ "browserTarget": "@project.name@:build",
1253
+ "proxyConfig": "apps/@project.name@/proxy-mock.conf.json"
1254
+ },
1255
+ "production": {
1256
+ "browserTarget": "@project.name@:build:production"
1257
+ },
1258
+ "development": {
1259
+ "browserTarget": "@project.name@:build:development"
1260
+ }
1261
+ },
1262
+ "defaultConfiguration": "development"
1263
+ }
1264
+ }
1265
+ };
1166
1266
 
1167
1267
 
1168
- module.exports.angularProjectDefFullSkeletonV17 = {
1268
+
1269
+ module.exports.angularProjectDefFullSkeletonV17esbuild = {
1169
1270
  "root": "",
1170
1271
  "sourceRoot": "apps/@project.name@/src",
1171
1272
  "projectType": "application",
@@ -0,0 +1,86 @@
1
+ /**
2
+ * This file includes polyfills needed by Angular and is loaded before the app.
3
+ * You can add your own extra polyfills to this file.
4
+ *
5
+ * This file is divided into 2 sections:
6
+ * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
7
+ * 2. Application imports. Files imported after ZoneJS that should be loaded before your main
8
+ * file.
9
+ *
10
+ * The current setup is for so-called "evergreen" browsers; the last versions of browsers that
11
+ * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
12
+ * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
13
+ *
14
+ * Learn more in https://angular.io/docs/ts/latest/guide/browser-support.html
15
+ */
16
+
17
+ /***************************************************************************************************
18
+ * BROWSER POLYFILLS
19
+ */
20
+
21
+ /** IE9, IE10 and IE11 requires all of the following polyfills. **/
22
+ // import 'core-js/es6/symbol';
23
+ // import 'core-js/es6/object';
24
+ // import 'core-js/es6/function';
25
+ // import 'core-js/es6/parse-int';
26
+ // import 'core-js/es6/parse-float';
27
+ // import 'core-js/es6/number';
28
+ // import 'core-js/es6/math';
29
+ // import 'core-js/es6/string';
30
+ // import 'core-js/es6/date';
31
+ // import 'core-js/es6/array';
32
+ // import 'core-js/es6/regexp';
33
+ // import 'core-js/es6/map';
34
+ // import 'core-js/es6/weak-map';
35
+ // import 'core-js/es6/set';
36
+
37
+ /** IE10 and IE11 requires the following for NgClass support on SVG elements */
38
+ // import 'classlist.js'; // Run `npm install --save classlist.js`.
39
+
40
+ /** IE10 and IE11 requires the following for the Reflect API. */
41
+ // import 'core-js/es6/reflect';
42
+
43
+ /** Evergreen browsers require these. **/
44
+ // Used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove.
45
+ // import 'core-js/es7/reflect';
46
+
47
+ /**
48
+ * Web Animations `@angular/platform-browser/animations`
49
+ * Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
50
+ * Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
51
+ **/
52
+ // import 'web-animations-js'; // Run `npm install --save web-animations-js`.
53
+
54
+ /**
55
+ * By default, zone.js will patch all possible macroTask and DomEvents
56
+ * user can disable parts of macroTask/DomEvents patch by setting following flags
57
+ */
58
+
59
+ // (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
60
+ // (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
61
+ // (window as any).__zone_symbol__BLACK_LISTED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
62
+
63
+ /*
64
+ * in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
65
+ * with the following flag, it will bypass `zone.js` patch for IE/Edge
66
+ */
67
+ // (window as any).__Zone_enable_cross_context_check = true;
68
+
69
+ /***************************************************************************************************
70
+ * Zone JS is required by default for Angular itself.
71
+ */
72
+ import 'zone.js'; // Included with Angular CLI.
73
+
74
+ /***************************************************************************************************
75
+ * APPLICATION IMPORTS
76
+ */
77
+
78
+ /**
79
+ * Date, currency, decimal and percent pipes.
80
+ * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10
81
+ */
82
+ // import 'intl'; // Run `npm install --save intl`.
83
+ /**
84
+ * Need to import at least one locale-data with intl.
85
+ */
86
+ // import 'intl/locale-data/jsonp/en';