@wavemaker/angular-codegen 11.0.0-next.71019 → 11.0.0-next.71023
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/package-lock.json +60150 -15630
- angular-codegen/angular-app/package.json +4 -2
- angular-codegen/download-packages.js +1 -1
- angular-codegen/package-lock.json +6540 -1253
- angular-codegen/package.json +1 -1
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"tslib": "^2.0.0",
|
|
69
69
|
"x2js": "3.2.6",
|
|
70
70
|
"zone.js": "~0.10.3",
|
|
71
|
-
"@wavemaker/app-ng-runtime": "11.0.0-next.
|
|
71
|
+
"@wavemaker/app-ng-runtime": "11.0.0-next.71023"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"@ampproject/rollup-plugin-closure-compiler": "0.8.5",
|
|
@@ -83,6 +83,7 @@
|
|
|
83
83
|
"@types/jasminewd2": "2.0.3",
|
|
84
84
|
"@types/jquery": "3.3.22",
|
|
85
85
|
"@types/node": "12.11.1",
|
|
86
|
+
"@types/sizzle": "^2.3.3",
|
|
86
87
|
"brotli-webpack-plugin": "1.1.0",
|
|
87
88
|
"cheerio": "1.0.0-rc.2",
|
|
88
89
|
"codelyzer": "5.1.2",
|
|
@@ -114,6 +115,7 @@
|
|
|
114
115
|
"ts-node": "7.0.1",
|
|
115
116
|
"tslint": "~6.1.0",
|
|
116
117
|
"typescript": "4.1.6",
|
|
117
|
-
"util": "0.11.1"
|
|
118
|
+
"util": "0.11.1",
|
|
119
|
+
"yargs": "^17.3.1"
|
|
118
120
|
}
|
|
119
121
|
}
|
|
@@ -36,7 +36,7 @@ const downloadNPMPackage = (packageInfo) => {
|
|
|
36
36
|
// To check global app runtime node modules.
|
|
37
37
|
if (!isNPMPackageExist(PATH_NPM_PACKAGE_SUCCESS, packageInfo.successMsg)) {
|
|
38
38
|
fs.mkdirSync(PATH_NPM_PACKAGE, { recursive: true });
|
|
39
|
-
let npmInstallCMD = 'npm install ';
|
|
39
|
+
let npmInstallCMD = 'npm install --legacy-peer-deps ';
|
|
40
40
|
if (packageInfo.packageJsonFile && fs.existsSync(packageInfo.packageJsonFile)) {
|
|
41
41
|
fs.copyFileSync(packageInfo.packageJsonFile, PATH_NPM_PACKAGE + '/package.json');
|
|
42
42
|
} else {
|