@eui/cli 17.0.0-next.8 → 17.0.0-rc.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.
- package/.version.properties +1 -1
- package/lib/skeletons/_angular/base/angular.json +149 -166
- package/lib/skeletons/_angular/base/package.json +2 -2
- package/lib/skeletons/_angular/base/src/app/app.component.html +16 -13
- package/lib/skeletons/_angular/base/src/app/app.component.ts +2 -28
- package/lib/skeletons/_angular/base/src/app/features/home/home.component.html +2 -2
- package/lib/skeletons/_angular/base/src/app/shared/shared.module.ts +0 -4
- package/lib/skeletons/_angular/base/src/main.ts +12 -7
- package/lib/skeletons/_angular/base-mobile/angular.json +140 -144
- package/lib/skeletons/_angular/base-mobile/package.json +2 -2
- package/lib/skeletons/_angular/options/ecl-ec/angular.json +158 -174
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/home/home.component.html +4 -4
- package/lib/skeletons/_angular/options/ecl-eu/angular.json +149 -152
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/home/home.component.html +4 -4
- package/lib/skeletons/_angular/options/merged-ecl-openid-jwt/package.json +2 -2
- package/lib/skeletons/_angular/options/openid-jwt/package.json +2 -2
- package/lib/skeletons/web-symfony/myapp-web/package.json +2 -2
- package/package.json +3 -3
- package/lib/skeletons/_angular/base/src/polyfills.ts +0 -90
|
@@ -6,154 +6,150 @@
|
|
|
6
6
|
"analytics": false
|
|
7
7
|
},
|
|
8
8
|
"projects": {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
"architect": {
|
|
20
|
-
"build": {
|
|
21
|
-
"builder": "@angular-devkit/build-angular:browser",
|
|
22
|
-
"options": {
|
|
23
|
-
"outputPath": "dist",
|
|
24
|
-
"index": "src/index.html",
|
|
25
|
-
"main": "src/main.ts",
|
|
26
|
-
"polyfills": "src/polyfills.ts",
|
|
27
|
-
"tsConfig": "src/tsconfig.app.json",
|
|
28
|
-
"assets": [
|
|
29
|
-
"src/favicon.ico",
|
|
30
|
-
"src/assets",
|
|
31
|
-
{
|
|
32
|
-
"glob": "**/*",
|
|
33
|
-
"input": "src/assets",
|
|
34
|
-
"output": "assets"
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"glob": "**/*",
|
|
38
|
-
"input": "node_modules/@eui/core/assets/",
|
|
39
|
-
"output": "./assets"
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"glob": "**/*",
|
|
43
|
-
"input": "node_modules/@eui/ecl-core/assets/",
|
|
44
|
-
"output": "./assets"
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"glob": "**/*",
|
|
48
|
-
"input": "node_modules/@eui/styles-base/dist/assets/images",
|
|
49
|
-
"output": "./assets/images"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"glob": "**/*.svg",
|
|
53
|
-
"input": "node_modules/ionicons/dist/ionicons/svg",
|
|
54
|
-
"output": "./svg"
|
|
9
|
+
"app": {
|
|
10
|
+
"root": "",
|
|
11
|
+
"sourceRoot": "src",
|
|
12
|
+
"projectType": "application",
|
|
13
|
+
"prefix": "app",
|
|
14
|
+
"schematics": {
|
|
15
|
+
"@schematics/angular:component": {
|
|
16
|
+
"style": "scss"
|
|
55
17
|
}
|
|
56
|
-
],
|
|
57
|
-
"styles": [
|
|
58
|
-
"node_modules/@eui/mobile-styles/dist/styles/eui-mobile.css",
|
|
59
|
-
"src/styles.scss"
|
|
60
|
-
]
|
|
61
18
|
},
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
19
|
+
"architect": {
|
|
20
|
+
"build": {
|
|
21
|
+
"builder": "@angular-devkit/build-angular:application",
|
|
22
|
+
"options": {
|
|
23
|
+
"outputPath": "dist",
|
|
24
|
+
"index": "src/index.html",
|
|
25
|
+
"browser": "src/main.ts",
|
|
26
|
+
"polyfills": ["zone.js"],
|
|
27
|
+
"tsConfig": "src/tsconfig.app.json",
|
|
28
|
+
"assets": [
|
|
29
|
+
"src/favicon.ico",
|
|
30
|
+
"src/assets",
|
|
31
|
+
{
|
|
32
|
+
"glob": "**/*",
|
|
33
|
+
"input": "src/assets",
|
|
34
|
+
"output": "assets"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"glob": "**/*",
|
|
38
|
+
"input": "node_modules/@eui/core/assets/",
|
|
39
|
+
"output": "./assets"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"glob": "**/*",
|
|
43
|
+
"input": "node_modules/@eui/ecl-core/assets/",
|
|
44
|
+
"output": "./assets"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"glob": "**/*",
|
|
48
|
+
"input": "node_modules/@eui/styles-base/dist/assets/images",
|
|
49
|
+
"output": "./assets/images"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"glob": "**/*.svg",
|
|
53
|
+
"input": "node_modules/ionicons/dist/ionicons/svg",
|
|
54
|
+
"output": "./svg"
|
|
55
|
+
}
|
|
56
|
+
],
|
|
57
|
+
"styles": [
|
|
58
|
+
"node_modules/@eui/mobile-styles/dist/styles/eui-mobile.css",
|
|
59
|
+
"src/styles.scss"
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
"configurations": {
|
|
63
|
+
"production": {
|
|
64
|
+
"fileReplacements": [
|
|
65
|
+
{
|
|
66
|
+
"replace": "src/environments/environment.ts",
|
|
67
|
+
"with": "src/environments/environment.prod.ts"
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"optimization": false,
|
|
71
|
+
"outputHashing": "all",
|
|
72
|
+
"sourceMap": false,
|
|
73
|
+
"aot": true,
|
|
74
|
+
"extractLicenses": true,
|
|
75
|
+
"budgets": [
|
|
76
|
+
{
|
|
77
|
+
"type": "initial",
|
|
78
|
+
"maximumWarning": "1mb",
|
|
79
|
+
"maximumError": "2mb"
|
|
80
|
+
}
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
"production-optimized": {
|
|
84
|
+
"fileReplacements": [
|
|
85
|
+
{
|
|
86
|
+
"replace": "src/environments/environment.ts",
|
|
87
|
+
"with": "src/environments/environment.prod.ts"
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"optimization": {
|
|
91
|
+
"scripts": true,
|
|
92
|
+
"styles": {
|
|
93
|
+
"minify": false,
|
|
94
|
+
"inlineCritical": true
|
|
95
|
+
},
|
|
96
|
+
"fonts": true
|
|
97
|
+
},
|
|
98
|
+
"outputHashing": "all",
|
|
99
|
+
"sourceMap": false,
|
|
100
|
+
"extractLicenses": true,
|
|
101
|
+
"budgets": [
|
|
102
|
+
{
|
|
103
|
+
"type": "initial",
|
|
104
|
+
"maximumWarning": "2mb",
|
|
105
|
+
"maximumError": "6mb"
|
|
106
|
+
}
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
"development": {
|
|
110
|
+
"optimization": false,
|
|
111
|
+
"extractLicenses": false,
|
|
112
|
+
"sourceMap": true
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"defaultConfiguration": "production"
|
|
116
|
+
},
|
|
117
|
+
"serve": {
|
|
118
|
+
"builder": "@angular-devkit/build-angular:dev-server",
|
|
119
|
+
"options": {
|
|
120
|
+
"buildTarget": "app:build"
|
|
121
|
+
},
|
|
122
|
+
"configurations": {
|
|
123
|
+
"proxy-mock": {
|
|
124
|
+
"buildTarget": "app:build:development",
|
|
125
|
+
"proxyConfig": "proxy-mock.conf.json"
|
|
126
|
+
},
|
|
127
|
+
"production": {
|
|
128
|
+
"buildTarget": "app:build:production"
|
|
129
|
+
},
|
|
130
|
+
"development": {
|
|
131
|
+
"buildTarget": "app:build:development"
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"defaultConfiguration": "development"
|
|
135
|
+
},
|
|
136
|
+
"test": {
|
|
137
|
+
"builder": "@angular-devkit/build-angular:karma",
|
|
138
|
+
"options": {
|
|
139
|
+
"polyfills": ["zone.js", "zone.js/testing"],
|
|
140
|
+
"tsConfig": "src/tsconfig.spec.json",
|
|
141
|
+
"karmaConfig": "src/karma.conf.js",
|
|
142
|
+
"inlineStyleLanguage": "scss"
|
|
92
143
|
}
|
|
93
|
-
|
|
94
|
-
"
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
"aot": true,
|
|
100
|
-
"extractLicenses": true,
|
|
101
|
-
"vendorChunk": false,
|
|
102
|
-
"buildOptimizer": true,
|
|
103
|
-
"budgets": [
|
|
104
|
-
{
|
|
105
|
-
"type": "initial",
|
|
106
|
-
"maximumWarning": "2mb",
|
|
107
|
-
"maximumError": "6mb"
|
|
144
|
+
},
|
|
145
|
+
"lint": {
|
|
146
|
+
"builder": "@angular-eslint/builder:lint",
|
|
147
|
+
"options": {
|
|
148
|
+
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"],
|
|
149
|
+
"eslintConfig": "src/.eslintrc.json"
|
|
108
150
|
}
|
|
109
|
-
|
|
110
|
-
},
|
|
111
|
-
"dev": {
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
},
|
|
115
|
-
"serve": {
|
|
116
|
-
"builder": "@angular-devkit/build-angular:dev-server",
|
|
117
|
-
"options": {
|
|
118
|
-
"browserTarget": "app:build"
|
|
119
|
-
},
|
|
120
|
-
"configurations": {
|
|
121
|
-
"proxy-mock": {
|
|
122
|
-
"browserTarget": "app:build",
|
|
123
|
-
"proxyConfig": "proxy-mock.conf.json"
|
|
124
|
-
},
|
|
125
|
-
"proxy": {
|
|
126
|
-
"browserTarget": "app:build",
|
|
127
|
-
"proxyConfig": "proxy.conf.json"
|
|
128
|
-
},
|
|
129
|
-
"production": {
|
|
130
|
-
"browserTarget": "app:build:production"
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
},
|
|
134
|
-
"test": {
|
|
135
|
-
"builder": "@angular-devkit/build-angular:karma",
|
|
136
|
-
"options": {
|
|
137
|
-
"polyfills": [
|
|
138
|
-
"zone.js",
|
|
139
|
-
"zone.js/testing"
|
|
140
|
-
],
|
|
141
|
-
"tsConfig": "src/tsconfig.spec.json",
|
|
142
|
-
"karmaConfig": "src/karma.conf.js",
|
|
143
|
-
"inlineStyleLanguage": "scss"
|
|
144
|
-
}
|
|
145
|
-
},
|
|
146
|
-
"lint": {
|
|
147
|
-
"builder": "@angular-eslint/builder:lint",
|
|
148
|
-
"options": {
|
|
149
|
-
"lintFilePatterns": [
|
|
150
|
-
"src/**/*.ts",
|
|
151
|
-
"src/**/*.html"
|
|
152
|
-
],
|
|
153
|
-
"eslintConfig": "src/.eslintrc.json"
|
|
151
|
+
}
|
|
154
152
|
}
|
|
155
|
-
}
|
|
156
153
|
}
|
|
157
|
-
}
|
|
158
154
|
}
|
|
159
|
-
|
|
155
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "17.0.0-
|
|
3
|
+
"version": "17.0.0-rc.1",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"private": true,
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@eui/deps-base": "17.0.0-
|
|
23
|
+
"@eui/deps-base": "17.0.0-rc.1",
|
|
24
24
|
"@eui/mobile-core": "15.1.0",
|
|
25
25
|
"@eui/mobile-styles": "15.1.0"
|
|
26
26
|
}
|
|
@@ -6,187 +6,171 @@
|
|
|
6
6
|
"analytics": false
|
|
7
7
|
},
|
|
8
8
|
"projects": {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
},
|
|
18
|
-
"@schematics/angular:application": {
|
|
19
|
-
"strict": true
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
|
-
"architect": {
|
|
23
|
-
"build": {
|
|
24
|
-
"builder": "@angular-devkit/build-angular:browser",
|
|
25
|
-
"options": {
|
|
26
|
-
"outputPath": "dist",
|
|
27
|
-
"index": "src/index.html",
|
|
28
|
-
"main": "src/main.ts",
|
|
29
|
-
"polyfills": "src/polyfills.ts",
|
|
30
|
-
"tsConfig": "src/tsconfig.app.json",
|
|
31
|
-
"inlineStyleLanguage": "scss",
|
|
32
|
-
"assets": [
|
|
33
|
-
"src/favicon.ico",
|
|
34
|
-
"src/assets",
|
|
35
|
-
{
|
|
36
|
-
"glob": "**/*",
|
|
37
|
-
"input": "node_modules/@eui/core/assets/",
|
|
38
|
-
"output": "./assets"
|
|
9
|
+
"app": {
|
|
10
|
+
"root": "",
|
|
11
|
+
"sourceRoot": "src",
|
|
12
|
+
"projectType": "application",
|
|
13
|
+
"prefix": "app",
|
|
14
|
+
"schematics": {
|
|
15
|
+
"@schematics/angular:component": {
|
|
16
|
+
"style": "scss"
|
|
39
17
|
},
|
|
40
|
-
{
|
|
41
|
-
|
|
42
|
-
"input": "node_modules/@eui/styles-base/dist/assets/ecl",
|
|
43
|
-
"output": "./assets/images/ecl"
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"glob": "**/*",
|
|
47
|
-
"input": "node_modules/@eui/styles-base/dist/assets",
|
|
48
|
-
"output": "./assets"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"glob": "**/*",
|
|
52
|
-
"input": "node_modules/@eui/ecl/assets/",
|
|
53
|
-
"output": "./assets"
|
|
54
|
-
}
|
|
55
|
-
],
|
|
56
|
-
"styles": [
|
|
57
|
-
"node_modules/@eui/styles/dist/styles/eui-ecl-ec.css",
|
|
58
|
-
"src/styles.scss"
|
|
59
|
-
]
|
|
60
|
-
},
|
|
61
|
-
"configurations": {
|
|
62
|
-
"production": {
|
|
63
|
-
"fileReplacements": [
|
|
64
|
-
{
|
|
65
|
-
"replace": "src/environments/environment.ts",
|
|
66
|
-
"with": "src/environments/environment.prod.ts"
|
|
67
|
-
}
|
|
68
|
-
],
|
|
69
|
-
"optimization": false,
|
|
70
|
-
"outputHashing": "all",
|
|
71
|
-
"sourceMap": false,
|
|
72
|
-
"namedChunks": true,
|
|
73
|
-
"aot": true,
|
|
74
|
-
"extractLicenses": true,
|
|
75
|
-
"vendorChunk": false,
|
|
76
|
-
"buildOptimizer": false,
|
|
77
|
-
"budgets": [
|
|
78
|
-
{
|
|
79
|
-
"type": "initial",
|
|
80
|
-
"maximumWarning": "2mb",
|
|
81
|
-
"maximumError": "6mb"
|
|
82
|
-
}
|
|
83
|
-
]
|
|
84
|
-
},
|
|
85
|
-
"production-optimized": {
|
|
86
|
-
"fileReplacements": [
|
|
87
|
-
{
|
|
88
|
-
"replace": "src/environments/environment.ts",
|
|
89
|
-
"with": "src/environments/environment.prod.ts"
|
|
90
|
-
}
|
|
91
|
-
],
|
|
92
|
-
"optimization": {
|
|
93
|
-
"scripts": true,
|
|
94
|
-
"styles": {
|
|
95
|
-
"minify": false,
|
|
96
|
-
"inlineCritical": true
|
|
97
|
-
},
|
|
98
|
-
"fonts": true
|
|
99
|
-
},
|
|
100
|
-
"outputHashing": "all",
|
|
101
|
-
"sourceMap": false,
|
|
102
|
-
"namedChunks": true,
|
|
103
|
-
"aot": true,
|
|
104
|
-
"extractLicenses": true,
|
|
105
|
-
"vendorChunk": false,
|
|
106
|
-
"buildOptimizer": true,
|
|
107
|
-
"budgets": [
|
|
108
|
-
{
|
|
109
|
-
"type": "initial",
|
|
110
|
-
"maximumWarning": "2mb",
|
|
111
|
-
"maximumError": "6mb"
|
|
112
|
-
}
|
|
113
|
-
]
|
|
114
|
-
},
|
|
115
|
-
"development": {
|
|
116
|
-
"buildOptimizer": false,
|
|
117
|
-
"optimization": false,
|
|
118
|
-
"vendorChunk": true,
|
|
119
|
-
"extractLicenses": false,
|
|
120
|
-
"sourceMap": true,
|
|
121
|
-
"namedChunks": true
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
"defaultConfiguration": "production"
|
|
125
|
-
},
|
|
126
|
-
"serve": {
|
|
127
|
-
"builder": "@angular-devkit/build-angular:dev-server",
|
|
128
|
-
"options": {
|
|
129
|
-
"browserTarget": "app:build"
|
|
130
|
-
},
|
|
131
|
-
"configurations": {
|
|
132
|
-
"proxy-mock": {
|
|
133
|
-
"browserTarget": "app:build",
|
|
134
|
-
"proxyConfig": "proxy-mock.conf.json"
|
|
135
|
-
},
|
|
136
|
-
"production": {
|
|
137
|
-
"browserTarget": "app:build:production"
|
|
138
|
-
},
|
|
139
|
-
"development": {
|
|
140
|
-
"browserTarget": "app:build:development"
|
|
18
|
+
"@schematics/angular:application": {
|
|
19
|
+
"strict": true
|
|
141
20
|
}
|
|
142
21
|
},
|
|
143
|
-
"
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
22
|
+
"architect": {
|
|
23
|
+
"build": {
|
|
24
|
+
"builder": "@angular-devkit/build-angular:application",
|
|
25
|
+
"options": {
|
|
26
|
+
"outputPath": "dist",
|
|
27
|
+
"index": "src/index.html",
|
|
28
|
+
"browser": "src/main.ts",
|
|
29
|
+
"polyfills": ["zone.js"],
|
|
30
|
+
"tsConfig": "src/tsconfig.app.json",
|
|
31
|
+
"inlineStyleLanguage": "scss",
|
|
32
|
+
"assets": [
|
|
33
|
+
"src/favicon.ico",
|
|
34
|
+
"src/assets",
|
|
35
|
+
{
|
|
36
|
+
"glob": "**/*",
|
|
37
|
+
"input": "node_modules/@eui/core/assets/",
|
|
38
|
+
"output": "./assets"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"glob": "**/*",
|
|
42
|
+
"input": "node_modules/@eui/styles-base/dist/assets/ecl",
|
|
43
|
+
"output": "./assets/images/ecl"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"glob": "**/*",
|
|
47
|
+
"input": "node_modules/@eui/styles-base/dist/assets",
|
|
48
|
+
"output": "./assets"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"glob": "**/*",
|
|
52
|
+
"input": "node_modules/@eui/ecl/assets/",
|
|
53
|
+
"output": "./assets"
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"styles": [
|
|
57
|
+
"node_modules/@eui/styles/dist/styles/eui-ecl-ec.css",
|
|
58
|
+
"src/styles.scss"
|
|
59
|
+
]
|
|
170
60
|
},
|
|
171
|
-
{
|
|
172
|
-
"
|
|
173
|
-
|
|
174
|
-
|
|
61
|
+
"configurations": {
|
|
62
|
+
"production": {
|
|
63
|
+
"fileReplacements": [
|
|
64
|
+
{
|
|
65
|
+
"replace": "src/environments/environment.ts",
|
|
66
|
+
"with": "src/environments/environment.prod.ts"
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
"optimization": false,
|
|
70
|
+
"outputHashing": "all",
|
|
71
|
+
"sourceMap": false,
|
|
72
|
+
"aot": true,
|
|
73
|
+
"extractLicenses": true,
|
|
74
|
+
"budgets": [
|
|
75
|
+
{
|
|
76
|
+
"type": "initial",
|
|
77
|
+
"maximumWarning": "1mb",
|
|
78
|
+
"maximumError": "2mb"
|
|
79
|
+
}
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
"production-optimized": {
|
|
83
|
+
"fileReplacements": [
|
|
84
|
+
{
|
|
85
|
+
"replace": "src/environments/environment.ts",
|
|
86
|
+
"with": "src/environments/environment.prod.ts"
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"optimization": {
|
|
90
|
+
"scripts": true,
|
|
91
|
+
"styles": {
|
|
92
|
+
"minify": false,
|
|
93
|
+
"inlineCritical": true
|
|
94
|
+
},
|
|
95
|
+
"fonts": true
|
|
96
|
+
},
|
|
97
|
+
"outputHashing": "all",
|
|
98
|
+
"sourceMap": false,
|
|
99
|
+
"extractLicenses": true,
|
|
100
|
+
"budgets": [
|
|
101
|
+
{
|
|
102
|
+
"type": "initial",
|
|
103
|
+
"maximumWarning": "2mb",
|
|
104
|
+
"maximumError": "6mb"
|
|
105
|
+
}
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
"development": {
|
|
109
|
+
"optimization": false,
|
|
110
|
+
"extractLicenses": false,
|
|
111
|
+
"sourceMap": true
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
"defaultConfiguration": "production"
|
|
115
|
+
},
|
|
116
|
+
"serve": {
|
|
117
|
+
"builder": "@angular-devkit/build-angular:dev-server",
|
|
118
|
+
"options": {
|
|
119
|
+
"buildTarget": "app:build"
|
|
175
120
|
},
|
|
176
|
-
{
|
|
177
|
-
"
|
|
178
|
-
|
|
179
|
-
|
|
121
|
+
"configurations": {
|
|
122
|
+
"proxy-mock": {
|
|
123
|
+
"buildTarget": "app:build:development",
|
|
124
|
+
"proxyConfig": "proxy-mock.conf.json"
|
|
125
|
+
},
|
|
126
|
+
"production": {
|
|
127
|
+
"buildTarget": "app:build:production"
|
|
128
|
+
},
|
|
129
|
+
"development": {
|
|
130
|
+
"buildTarget": "app:build:development"
|
|
131
|
+
}
|
|
180
132
|
},
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
133
|
+
"defaultConfiguration": "development"
|
|
134
|
+
},
|
|
135
|
+
"lint": {
|
|
136
|
+
"builder": "@angular-eslint/builder:lint",
|
|
137
|
+
"options": {
|
|
138
|
+
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"],
|
|
139
|
+
"eslintConfig": "src/.eslintrc.json"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"test": {
|
|
143
|
+
"builder": "@angular-devkit/build-angular:karma",
|
|
144
|
+
"options": {
|
|
145
|
+
"polyfills": ["zone.js", "zone.js/testing"],
|
|
146
|
+
"tsConfig": "src/tsconfig.spec.json",
|
|
147
|
+
"karmaConfig": "src/karma.conf.js",
|
|
148
|
+
"inlineStyleLanguage": "scss",
|
|
149
|
+
"assets": [
|
|
150
|
+
{
|
|
151
|
+
"glob": "**/*",
|
|
152
|
+
"input": "node_modules/@eui/core/assets/",
|
|
153
|
+
"output": "./assets"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"glob": "**/*",
|
|
157
|
+
"input": "node_modules/@eui/styles-base/dist/assets/ecl",
|
|
158
|
+
"output": "./assets/images/ecl"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"glob": "**/*",
|
|
162
|
+
"input": "node_modules/@eui/styles-base/dist/assets",
|
|
163
|
+
"output": "./assets"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"glob": "**/*",
|
|
167
|
+
"input": "node_modules/@eui/ecl/assets/",
|
|
168
|
+
"output": "./assets"
|
|
169
|
+
}
|
|
170
|
+
]
|
|
185
171
|
}
|
|
186
|
-
|
|
172
|
+
}
|
|
187
173
|
}
|
|
188
|
-
}
|
|
189
174
|
}
|
|
190
|
-
}
|
|
191
175
|
}
|
|
192
|
-
|
|
176
|
+
}
|