@wavemaker/angular-codegen 12.0.0-next.45752 → 12.0.0-next.46502
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 +15 -1
- angular-codegen/angular-app/package-lock.json +4018 -1582
- angular-codegen/angular-app/package.json +12 -4
- angular-codegen/angular-app/src/assets/styles/css/wm-style.css +1 -1
- angular-codegen/dependencies/pipe-provider.cjs.js +9 -12031
- angular-codegen/dependencies/transpilation-mobile.cjs.js +63 -821
- angular-codegen/dependencies/transpilation-web.cjs.js +63 -6066
- angular-codegen/package-lock.json +373 -60
- angular-codegen/package.json +2 -2
@@ -61,6 +61,7 @@
|
|
61
61
|
}
|
62
62
|
],
|
63
63
|
"scripts": [
|
64
|
+
"./node_modules/x2js/x2js.js",
|
64
65
|
"./node_modules/d3/dist/d3.min.js",
|
65
66
|
"./node_modules/@wavemaker/nvd3/build/nv.d3.min.js",
|
66
67
|
"./node_modules/jquery/dist/jquery.min.js",
|
@@ -201,6 +202,7 @@
|
|
201
202
|
"src/assets/app.css"
|
202
203
|
],
|
203
204
|
"scripts": [
|
205
|
+
"./node_modules/x2js/x2js.js",
|
204
206
|
"./node_modules/d3/dist/d3.min.js",
|
205
207
|
"./node_modules/@wavemaker/nvd3/build/nv.d3.min.js",
|
206
208
|
"./node_modules/jquery/dist/jquery.min.js",
|
@@ -257,11 +259,23 @@
|
|
257
259
|
"options": {
|
258
260
|
"buildTarget": "angular-app:build"
|
259
261
|
}
|
262
|
+
},
|
263
|
+
"lint": {
|
264
|
+
"builder": "@angular-eslint/builder:lint",
|
265
|
+
"options": {
|
266
|
+
"lintFilePatterns": [
|
267
|
+
"src/**/*.ts",
|
268
|
+
"src/**/*.html"
|
269
|
+
]
|
270
|
+
}
|
260
271
|
}
|
261
272
|
}
|
262
273
|
}
|
263
274
|
},
|
264
275
|
"cli": {
|
265
|
-
"analytics": "fe5e8f46-2dff-4044-b3b8-8a1307278ce6"
|
276
|
+
"analytics": "fe5e8f46-2dff-4044-b3b8-8a1307278ce6",
|
277
|
+
"schematicCollections": [
|
278
|
+
"@angular-eslint/schematics"
|
279
|
+
]
|
266
280
|
}
|
267
281
|
}
|