@wavemaker/angular-codegen 12.0.0-next.1417175 → 12.0.0-next.1417180
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.
- angular-codegen/angular-app/angular.json +301 -311
- angular-codegen/angular-app/package-lock.json +4 -4
- angular-codegen/angular-app/package.json +2 -2
- angular-codegen/angular-app/tsconfig.json +27 -27
- angular-codegen/angular-app/tsconfig.web-app.json +24 -24
- angular-codegen/build-angular-app.js +25 -2
- angular-codegen/package-lock.json +439 -4
- angular-codegen/package.json +2 -1
@@ -1,316 +1,306 @@
|
|
1
1
|
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
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
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
2
|
+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
3
|
+
"version": 1,
|
4
|
+
"newProjectRoot": "projects",
|
5
|
+
"projects": {
|
6
|
+
"angular-app": {
|
7
|
+
"root": "",
|
8
|
+
"sourceRoot": "src",
|
9
|
+
"projectType": "application",
|
10
|
+
"prefix": "app",
|
11
|
+
"schematics": {},
|
12
|
+
"architect": {
|
13
|
+
"build": {
|
14
|
+
"builder": "@angular-builders/custom-webpack:browser",
|
15
|
+
"options": {
|
16
|
+
"customWebpackConfig": {
|
17
|
+
"path": "./wm-custom-webpack.config.js"
|
18
|
+
},
|
19
|
+
"indexTransform": "./build-scripts/index-html-transform.js",
|
20
|
+
"deployUrl": "ng-bundle/",
|
21
|
+
"outputPath": "dist/ng-bundle",
|
22
|
+
"index": {
|
23
|
+
"input": "src/index.html",
|
24
|
+
"output": "../index.html"
|
25
|
+
},
|
26
|
+
"main": "src/main.ts",
|
27
|
+
"polyfills": "src/polyfills.ts",
|
28
|
+
"tsConfig": "src/tsconfig.app.json",
|
29
|
+
"assets": [
|
30
|
+
"src/favicon.ico",
|
31
|
+
"src/favicon.png",
|
32
|
+
"src/assets",
|
33
|
+
{
|
34
|
+
"glob": "print.css",
|
35
|
+
"input": "src/assets/",
|
36
|
+
"output": "."
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"glob": "**/*",
|
40
|
+
"input": "libraries/locales/",
|
41
|
+
"output": "/locales/"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"glob": "**/*",
|
45
|
+
"input": "node_modules/@wavemaker/app-ng-runtime/locales/",
|
46
|
+
"output": "/locales/"
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"glob": "**/*",
|
50
|
+
"input": "src/servicedefs",
|
51
|
+
"output": "/servicedefs/"
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"glob": "**/*",
|
55
|
+
"input": "resources",
|
56
|
+
"output": "/resources/",
|
57
|
+
"ignore": [
|
58
|
+
"**/*.txt"
|
59
|
+
]
|
60
|
+
}
|
61
|
+
],
|
62
|
+
"styles": [
|
63
|
+
"src/styles.css",
|
64
|
+
"src/assets/styles/css/wm-style.css",
|
65
|
+
"src/assets/styles/css/wm-responsive.css",
|
66
|
+
{
|
67
|
+
"input": "src/assets/themes/material/style.css",
|
68
|
+
"inject": false,
|
69
|
+
"bundleName": "wm-styles"
|
70
|
+
},
|
71
|
+
{
|
72
|
+
"input": "src/assets/app.css",
|
73
|
+
"inject": false,
|
74
|
+
"bundleName": "wm-styles"
|
75
|
+
}
|
76
|
+
],
|
77
|
+
"scripts": [
|
78
|
+
"./node_modules/x2js/x2js.js",
|
79
|
+
"./node_modules/d3/dist/d3.min.js",
|
80
|
+
"./node_modules/@wavemaker/nvd3/build/nv.d3.min.js",
|
81
|
+
"./node_modules/jquery/dist/jquery.min.js",
|
82
|
+
"./node_modules/jquery-ui/ui/disable-selection.js",
|
83
|
+
"./node_modules/jquery-ui/ui/version.js",
|
84
|
+
"./node_modules/jquery-ui/ui/widget.js",
|
85
|
+
"./node_modules/jquery-ui/ui/scroll-parent.js",
|
86
|
+
"./node_modules/jquery-ui/ui/plugin.js",
|
87
|
+
"./node_modules/jquery-ui/ui/data.js",
|
88
|
+
"./node_modules/jquery-ui/ui/widgets/mouse.js",
|
89
|
+
"./node_modules/jquery-ui/ui/widgets/resizable.js",
|
90
|
+
"./node_modules/jquery-ui/ui/widgets/sortable.js",
|
91
|
+
"./node_modules/jquery-ui/ui/widgets/draggable.js",
|
92
|
+
"./node_modules/jquery-ui/ui/widgets/droppable.js",
|
93
|
+
"./node_modules/@wavemaker/app-ng-runtime/scripts/datatable/datatable.js",
|
94
|
+
"./node_modules/@wavemaker/app-ng-runtime/scripts/swipey/swipey.jquery.plugin.js",
|
95
|
+
"./node_modules/@wavemaker/app-ng-runtime/scripts/jquery.ui.touch-punch/jquery.ui.touch-punch.min.js",
|
96
|
+
"./node_modules/moment/min/moment.min.js",
|
97
|
+
"./node_modules/moment-timezone/builds/moment-timezone.min.js",
|
98
|
+
"./node_modules/fullcalendar/main.min.js",
|
99
|
+
"./node_modules/summernote/dist/summernote-lite.min.js",
|
100
|
+
"./node_modules/hammerjs/hammer.min.js",
|
101
|
+
"./node_modules/iscroll/build/iscroll.js",
|
102
|
+
"./node_modules/js-cookie/src/js.cookie.js",
|
103
|
+
"./node_modules/jssha/dist/sha256.js",
|
104
|
+
"./node_modules/@ztree/ztree_v3/js/jquery.ztree.all.js",
|
105
|
+
"./node_modules/@wavemaker/app-ng-runtime/scripts/tree-keyboard-navigation/keyboard-navigation.js"
|
106
|
+
]
|
107
|
+
},
|
108
|
+
"configurations": {
|
109
|
+
"production": {
|
110
|
+
"fileReplacements": [
|
111
|
+
{
|
112
|
+
"replace": "src/environments/environment.ts",
|
113
|
+
"with": "src/environments/environment.prod.ts"
|
114
|
+
}
|
115
|
+
],
|
116
|
+
"optimization": {
|
117
|
+
"scripts": true,
|
118
|
+
"styles": {
|
119
|
+
"minify": true,
|
120
|
+
"inlineCritical": false
|
121
|
+
},
|
122
|
+
"fonts": true
|
123
|
+
},
|
124
|
+
"outputHashing": "all",
|
125
|
+
"sourceMap": false,
|
126
|
+
"namedChunks": false,
|
127
|
+
"aot": true,
|
128
|
+
"extractLicenses": true,
|
129
|
+
"vendorChunk": false,
|
130
|
+
"buildOptimizer": true,
|
131
|
+
"budgets": [
|
132
|
+
{
|
133
|
+
"type": "initial",
|
134
|
+
"maximumWarning": "2mb"
|
135
|
+
}
|
136
|
+
]
|
137
|
+
},
|
138
|
+
"development": {
|
139
|
+
"fileReplacements": [
|
140
|
+
{
|
141
|
+
"replace": "src/environments/environment.ts",
|
142
|
+
"with": "src/environments/environment.dev.ts"
|
143
|
+
}
|
144
|
+
],
|
145
|
+
"optimization": false,
|
146
|
+
"outputHashing": "none",
|
147
|
+
"sourceMap": true,
|
148
|
+
"namedChunks": true,
|
149
|
+
"aot": true,
|
150
|
+
"extractLicenses": false,
|
151
|
+
"vendorChunk": true,
|
152
|
+
"buildOptimizer": false,
|
153
|
+
"budgets": [
|
154
|
+
{
|
155
|
+
"type": "initial",
|
156
|
+
"maximumWarning": "2mb"
|
157
|
+
}
|
158
|
+
]
|
159
|
+
},
|
160
|
+
"local": {
|
161
|
+
"fileReplacements": [
|
162
|
+
{
|
163
|
+
"replace": "src/environments/environment.ts",
|
164
|
+
"with": "src/environments/environment.dev.ts"
|
165
|
+
}
|
166
|
+
],
|
167
|
+
"optimization": {
|
168
|
+
"scripts": false,
|
169
|
+
"styles": {
|
170
|
+
"minify": false,
|
171
|
+
"inlineCritical": false
|
172
|
+
},
|
173
|
+
"fonts": true
|
174
|
+
},
|
175
|
+
"outputHashing": "none",
|
176
|
+
"sourceMap": true,
|
177
|
+
"namedChunks": true,
|
178
|
+
"aot": true,
|
179
|
+
"extractLicenses": false,
|
180
|
+
"vendorChunk": false,
|
181
|
+
"buildOptimizer": true,
|
182
|
+
"budgets": [
|
183
|
+
{
|
184
|
+
"type": "initial",
|
185
|
+
"maximumWarning": "2mb"
|
186
|
+
}
|
187
|
+
]
|
188
|
+
}
|
189
|
+
},
|
190
|
+
"defaultConfiguration": "production"
|
191
|
+
},
|
192
|
+
"build-ng": {
|
193
|
+
"builder": "@angular-devkit/build-angular:browser",
|
194
|
+
"options": {
|
195
|
+
"outputPath": "dist",
|
196
|
+
"index": {
|
197
|
+
"input": "src/index.html",
|
198
|
+
"output": "../index.html"
|
199
|
+
},
|
200
|
+
"main": "src/main.ts",
|
201
|
+
"polyfills": "src/polyfills.ts",
|
202
|
+
"tsConfig": "src/tsconfig.app.json",
|
203
|
+
"assets": [
|
204
|
+
"src/favicon.ico",
|
205
|
+
"src/favicon.png",
|
206
|
+
"src/assets",
|
207
|
+
{
|
208
|
+
"glob": "print.css",
|
209
|
+
"input": "src/assets/",
|
210
|
+
"output": "."
|
211
|
+
},
|
212
|
+
{
|
213
|
+
"glob": "**/*",
|
214
|
+
"input": "src/servicedefs",
|
215
|
+
"output": "/servicedefs/"
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"glob": "**/*",
|
219
|
+
"input": "src/resources",
|
220
|
+
"output": "/resources/"
|
221
|
+
}
|
222
|
+
],
|
223
|
+
"styles": [
|
224
|
+
"src/styles.css",
|
225
|
+
"src/assets/styles/css/wm-style.css",
|
226
|
+
"src/assets/themes/material/style.css",
|
227
|
+
"src/assets/app.css"
|
228
|
+
],
|
229
|
+
"scripts": [
|
230
|
+
"./node_modules/x2js/x2js.js",
|
231
|
+
"./node_modules/d3/dist/d3.min.js",
|
232
|
+
"./node_modules/@wavemaker/nvd3/build/nv.d3.min.js",
|
233
|
+
"./node_modules/jquery/dist/jquery.min.js",
|
234
|
+
"./node_modules/jquery-ui/ui/disable-selection.js",
|
235
|
+
"./node_modules/jquery-ui/ui/version.js",
|
236
|
+
"./node_modules/jquery-ui/ui/widget.js",
|
237
|
+
"./node_modules/jquery-ui/ui/scroll-parent.js",
|
238
|
+
"./node_modules/jquery-ui/ui/plugin.js",
|
239
|
+
"./node_modules/jquery-ui/ui/data.js",
|
240
|
+
"./node_modules/jquery-ui/ui/widgets/mouse.js",
|
241
|
+
"./node_modules/jquery-ui/ui/widgets/resizable.js",
|
242
|
+
"./node_modules/jquery-ui/ui/widgets/sortable.js",
|
243
|
+
"./node_modules/jquery-ui/ui/widgets/droppable.js",
|
244
|
+
"./libraries/scripts/datatable/datatable.js",
|
245
|
+
"./node_modules/moment/min/moment.min.js",
|
246
|
+
"./node_modules/moment-timezone/builds/moment-timezone.min.js",
|
247
|
+
"./node_modules/fullcalendar/main.min.js",
|
248
|
+
"./node_modules/summernote/dist/summernote-lite.min.js",
|
249
|
+
"./node_modules/hammerjs/hammer.min.js",
|
250
|
+
"./node_modules/iscroll/build/iscroll.js",
|
251
|
+
"./node_modules/js-cookie/src/js.cookie.js",
|
252
|
+
"./node_modules/jssha/dist/sha256.js",
|
253
|
+
"./node_modules/@ztree/ztree_v3/js/jquery.ztree.all.js",
|
254
|
+
"./libraries/scripts/tree-keyboard-navigation/keyboard-navigation.js"
|
255
|
+
],
|
256
|
+
"aot": false,
|
257
|
+
"vendorChunk": true,
|
258
|
+
"extractLicenses": false,
|
259
|
+
"buildOptimizer": false,
|
260
|
+
"sourceMap": true,
|
261
|
+
"optimization": false,
|
262
|
+
"namedChunks": true
|
263
|
+
},
|
264
|
+
"configurations": {
|
265
|
+
"production": {
|
266
|
+
"browserTarget": "angular-app:build:production"
|
267
|
+
}
|
268
|
+
},
|
269
|
+
"defaultConfiguration": ""
|
270
|
+
},
|
271
|
+
"serve": {
|
272
|
+
"builder": "@angular-devkit/build-angular:dev-server",
|
273
|
+
"options": {
|
274
|
+
"buildTarget": "angular-app:build"
|
275
|
+
},
|
276
|
+
"configurations": {
|
277
|
+
"production": {
|
278
|
+
"buildTarget": "angular-app:build:production"
|
279
|
+
}
|
280
|
+
}
|
281
|
+
},
|
282
|
+
"extract-i18n": {
|
283
|
+
"builder": "@angular-devkit/build-angular:extract-i18n",
|
284
|
+
"options": {
|
285
|
+
"buildTarget": "angular-app:build"
|
286
|
+
}
|
287
|
+
},
|
288
|
+
"lint": {
|
289
|
+
"builder": "@angular-eslint/builder:lint",
|
290
|
+
"options": {
|
291
|
+
"lintFilePatterns": [
|
292
|
+
"src/**/*.ts",
|
293
|
+
"src/**/*.html"
|
294
|
+
]
|
295
|
+
}
|
119
296
|
}
|
120
|
-
],
|
121
|
-
"optimization": {
|
122
|
-
"scripts": true,
|
123
|
-
"styles": {
|
124
|
-
"minify": true,
|
125
|
-
"inlineCritical": false
|
126
|
-
},
|
127
|
-
"fonts": true
|
128
|
-
},
|
129
|
-
"outputHashing": "all",
|
130
|
-
"sourceMap": false,
|
131
|
-
"namedChunks": false,
|
132
|
-
"aot": true,
|
133
|
-
"extractLicenses": true,
|
134
|
-
"vendorChunk": false,
|
135
|
-
"buildOptimizer": true,
|
136
|
-
"budgets": [
|
137
|
-
{
|
138
|
-
"type": "initial",
|
139
|
-
"maximumWarning": "2mb"
|
140
|
-
}
|
141
|
-
]
|
142
|
-
},
|
143
|
-
"development": {
|
144
|
-
"fileReplacements": [
|
145
|
-
{
|
146
|
-
"replace": "src/environments/environment.ts",
|
147
|
-
"with": "src/environments/environment.dev.ts"
|
148
|
-
}
|
149
|
-
],
|
150
|
-
"optimization": false,
|
151
|
-
"outputHashing": "none",
|
152
|
-
"sourceMap": true,
|
153
|
-
"namedChunks": true,
|
154
|
-
"aot": true,
|
155
|
-
"extractLicenses": false,
|
156
|
-
"vendorChunk": true,
|
157
|
-
"buildOptimizer": false,
|
158
|
-
"budgets": [
|
159
|
-
{
|
160
|
-
"type": "initial",
|
161
|
-
"maximumWarning": "2mb"
|
162
|
-
}
|
163
|
-
]
|
164
|
-
},
|
165
|
-
"local": {
|
166
|
-
"fileReplacements": [
|
167
|
-
{
|
168
|
-
"replace": "src/environments/environment.ts",
|
169
|
-
"with": "src/environments/environment.dev.ts"
|
170
|
-
}
|
171
|
-
],
|
172
|
-
"optimization": {
|
173
|
-
"scripts": false,
|
174
|
-
"styles": {
|
175
|
-
"minify": false,
|
176
|
-
"inlineCritical": false
|
177
|
-
},
|
178
|
-
"fonts": true
|
179
|
-
},
|
180
|
-
"outputHashing": "none",
|
181
|
-
"sourceMap": true,
|
182
|
-
"namedChunks": true,
|
183
|
-
"aot": true,
|
184
|
-
"extractLicenses": false,
|
185
|
-
"vendorChunk": false,
|
186
|
-
"buildOptimizer": true,
|
187
|
-
"budgets": [
|
188
|
-
{
|
189
|
-
"type": "initial",
|
190
|
-
"maximumWarning": "2mb"
|
191
|
-
}
|
192
|
-
]
|
193
|
-
}
|
194
|
-
},
|
195
|
-
"defaultConfiguration": "production"
|
196
|
-
},
|
197
|
-
"build-ng": {
|
198
|
-
"builder": "@angular-devkit/build-angular:browser",
|
199
|
-
"options": {
|
200
|
-
"outputPath": "dist",
|
201
|
-
"index": {
|
202
|
-
"input": "src/index.html",
|
203
|
-
"output": "../index.html"
|
204
|
-
},
|
205
|
-
"main": "src/main.ts",
|
206
|
-
"polyfills": "src/polyfills.ts",
|
207
|
-
"tsConfig": "src/tsconfig.app.json",
|
208
|
-
"assets": [
|
209
|
-
"src/favicon.ico",
|
210
|
-
"src/favicon.png",
|
211
|
-
"src/assets",
|
212
|
-
{
|
213
|
-
"glob": "print.css",
|
214
|
-
"input": "src/assets/",
|
215
|
-
"output": "."
|
216
|
-
},
|
217
|
-
{
|
218
|
-
"glob": "**/*",
|
219
|
-
"input": "src/servicedefs",
|
220
|
-
"output": "/servicedefs/"
|
221
|
-
},
|
222
|
-
{
|
223
|
-
"glob": "**/*",
|
224
|
-
"input": "src/resources",
|
225
|
-
"output": "/resources/"
|
226
|
-
}
|
227
|
-
],
|
228
|
-
"styles": [
|
229
|
-
"src/styles.css",
|
230
|
-
"src/assets/styles/css/wm-style.css",
|
231
|
-
"src/assets/themes/material/style.css",
|
232
|
-
"src/assets/app.css"
|
233
|
-
],
|
234
|
-
"scripts": [
|
235
|
-
"./node_modules/x2js/x2js.js",
|
236
|
-
"./node_modules/d3/dist/d3.min.js",
|
237
|
-
"./node_modules/@wavemaker/nvd3/build/nv.d3.min.js",
|
238
|
-
"./node_modules/jquery/dist/jquery.min.js",
|
239
|
-
"./node_modules/jquery-ui/ui/disable-selection.js",
|
240
|
-
"./node_modules/jquery-ui/ui/version.js",
|
241
|
-
"./node_modules/jquery-ui/ui/widget.js",
|
242
|
-
"./node_modules/jquery-ui/ui/scroll-parent.js",
|
243
|
-
"./node_modules/jquery-ui/ui/plugin.js",
|
244
|
-
"./node_modules/jquery-ui/ui/data.js",
|
245
|
-
"./node_modules/jquery-ui/ui/widgets/mouse.js",
|
246
|
-
"./node_modules/jquery-ui/ui/widgets/resizable.js",
|
247
|
-
"./node_modules/jquery-ui/ui/widgets/sortable.js",
|
248
|
-
"./node_modules/jquery-ui/ui/widgets/droppable.js",
|
249
|
-
"./libraries/scripts/datatable/datatable.js",
|
250
|
-
"./node_modules/moment/min/moment.min.js",
|
251
|
-
"./node_modules/moment-timezone/builds/moment-timezone.min.js",
|
252
|
-
"./node_modules/fullcalendar/main.min.js",
|
253
|
-
"./node_modules/summernote/dist/summernote-lite.min.js",
|
254
|
-
"./node_modules/hammerjs/hammer.min.js",
|
255
|
-
"./node_modules/iscroll/build/iscroll.js",
|
256
|
-
"./node_modules/js-cookie/src/js.cookie.js",
|
257
|
-
"./node_modules/jssha/dist/sha256.js",
|
258
|
-
"./node_modules/@ztree/ztree_v3/js/jquery.ztree.all.js",
|
259
|
-
"./libraries/scripts/tree-keyboard-navigation/keyboard-navigation.js",
|
260
|
-
{
|
261
|
-
"input": "src/font.config.js",
|
262
|
-
"inject": false,
|
263
|
-
"bundleName": "font.config.js"
|
264
|
-
}
|
265
|
-
],
|
266
|
-
"aot": false,
|
267
|
-
"vendorChunk": true,
|
268
|
-
"extractLicenses": false,
|
269
|
-
"buildOptimizer": false,
|
270
|
-
"sourceMap": true,
|
271
|
-
"optimization": false,
|
272
|
-
"namedChunks": true
|
273
|
-
},
|
274
|
-
"configurations": {
|
275
|
-
"production": {
|
276
|
-
"browserTarget": "angular-app:build:production"
|
277
|
-
}
|
278
|
-
},
|
279
|
-
"defaultConfiguration": ""
|
280
|
-
},
|
281
|
-
"serve": {
|
282
|
-
"builder": "@angular-devkit/build-angular:dev-server",
|
283
|
-
"options": {
|
284
|
-
"buildTarget": "angular-app:build"
|
285
|
-
},
|
286
|
-
"configurations": {
|
287
|
-
"production": {
|
288
|
-
"buildTarget": "angular-app:build:production"
|
289
297
|
}
|
290
|
-
}
|
291
|
-
},
|
292
|
-
"extract-i18n": {
|
293
|
-
"builder": "@angular-devkit/build-angular:extract-i18n",
|
294
|
-
"options": {
|
295
|
-
"buildTarget": "angular-app:build"
|
296
|
-
}
|
297
|
-
},
|
298
|
-
"lint": {
|
299
|
-
"builder": "@angular-eslint/builder:lint",
|
300
|
-
"options": {
|
301
|
-
"lintFilePatterns": [
|
302
|
-
"src/**/*.ts",
|
303
|
-
"src/**/*.html"
|
304
|
-
]
|
305
|
-
}
|
306
298
|
}
|
307
|
-
|
299
|
+
},
|
300
|
+
"cli": {
|
301
|
+
"analytics": "fe5e8f46-2dff-4044-b3b8-8a1307278ce6",
|
302
|
+
"schematicCollections": [
|
303
|
+
"@angular-eslint/schematics"
|
304
|
+
]
|
308
305
|
}
|
309
|
-
|
310
|
-
"cli": {
|
311
|
-
"analytics": "fe5e8f46-2dff-4044-b3b8-8a1307278ce6",
|
312
|
-
"schematicCollections": [
|
313
|
-
"@angular-eslint/schematics"
|
314
|
-
]
|
315
|
-
}
|
316
|
-
}
|
306
|
+
}
|
@@ -36,7 +36,7 @@
|
|
36
36
|
"@metrichor/jmespath": "0.3.1",
|
37
37
|
"@wavemaker/focus-trap": "1.0.1",
|
38
38
|
"@wavemaker/nvd3": "1.8.12",
|
39
|
-
"@wavemaker/variables": "12.0.0-next.
|
39
|
+
"@wavemaker/variables": "12.0.0-next.1417180",
|
40
40
|
"@ztree/ztree_v3": "3.5.48",
|
41
41
|
"angular-imask": "^7.6.1",
|
42
42
|
"angular2-websocket": "0.9.7",
|
@@ -7577,9 +7577,9 @@
|
|
7577
7577
|
}
|
7578
7578
|
},
|
7579
7579
|
"node_modules/@wavemaker/variables": {
|
7580
|
-
"version": "12.0.0-next.
|
7581
|
-
"resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-12.0.0-next.
|
7582
|
-
"integrity": "sha512-
|
7580
|
+
"version": "12.0.0-next.1417180",
|
7581
|
+
"resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-12.0.0-next.1417180.tgz",
|
7582
|
+
"integrity": "sha512-737zuxTSbtmE6L6RkxSwgBcGEFk6lVJPo3NdUA49dA2AgeRmsK449lzSYMFmdpwvyvECyfRZBRL5Olg++qo1rA==",
|
7583
7583
|
"dependencies": {
|
7584
7584
|
"@metrichor/jmespath": "^0.3.1",
|
7585
7585
|
"he": "^1.2.0",
|