@wavemaker/angular-codegen 11.8.0-next.141683 → 11.8.0-next.141685

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-app",
3
- "version": "11.8.0-next.141683",
3
+ "version": "11.8.0-next.141685",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "start": "./node_modules/.bin/ng serve",
@@ -46,7 +46,7 @@
46
46
  "@metrichor/jmespath": "0.3.1",
47
47
  "@wavemaker/focus-trap": "1.0.1",
48
48
  "@wavemaker/nvd3": "1.8.11",
49
- "@wavemaker/variables": "11.8.0-next.141683",
49
+ "@wavemaker/variables": "11.8.0-next.141685",
50
50
  "@ztree/ztree_v3": "3.5.48",
51
51
  "angular-imask": "^7.6.1",
52
52
  "angular2-websocket": "0.9.7",
@@ -71,7 +71,7 @@
71
71
  "tslib": "2.4.1",
72
72
  "x2js": "3.4.4",
73
73
  "zone.js": "0.14.7",
74
- "@wavemaker/app-ng-runtime": "11.8.0-next.141683"
74
+ "@wavemaker/app-ng-runtime": "11.8.0-next.141685"
75
75
  },
76
76
  "devDependencies": {
77
77
  "@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
@@ -59,10 +59,10 @@ const buildAngularApp = (args) => {
59
59
  let pathAngularAppPackage = downloadNPMPackage(packageInfo);
60
60
  if (args.optimizeUIBuild) {
61
61
  // Symlink to reuse the existing node_modules
62
- fs.symlinkSync(pathAngularAppPackage + `/node_modules/${packageInfo.scope}/${packageInfo.name}/node_modules`, args.appTarget + '/node_modules', 'dir');
62
+ fs.symlinkSync(pathAngularAppPackage + `/node_modules`, args.appTarget + '/node_modules', 'dir');
63
63
  } else {
64
64
  fs.copyFileSync(pathAngularAppPackage + `/node_modules/${packageInfo.scope}/${packageInfo.name}/package.json`, args.appTarget + '/package.json');
65
- fs.copyFileSync(pathAngularAppPackage + `/node_modules/${packageInfo.scope}/${packageInfo.name}/npm-shrinkwrap.json`, args.appTarget + '/npm-shrinkwrap.json');
65
+ fs.copyFileSync(pathAngularAppPackage + `/node_modules/${packageInfo.scope}/${packageInfo.name}/package-lock.json`, args.appTarget + '/package-lock.json');
66
66
  executeSyncCmd('cd ' + args.appTarget + ` && npm install `, null, MSG_NG_RUNTIME_LOG);
67
67
  }
68
68
  } catch (err) {
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.8.0-next.141683",
3
+ "version": "11.8.0-next.141685",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@wavemaker/angular-codegen",
9
- "version": "11.8.0-next.141683",
9
+ "version": "11.8.0-next.141685",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
12
  "cheerio": "^1.0.0-rc.2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.8.0-next.141683",
3
+ "version": "11.8.0-next.141685",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -34,10 +34,5 @@
34
34
  "node": ">=18.16.1",
35
35
  "npm": ">=9.5.1"
36
36
  },
37
- "engineStrict": true,
38
- "files": [
39
- "**/*",
40
- ".npmrc",
41
- "angular-app/.npmrc"
42
- ]
37
+ "engineStrict": true
43
38
  }