@wavemaker/angular-codegen 12.0.0-next.140494 → 12.0.0-next.140498

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.
@@ -0,0 +1,24 @@
1
+ 'use strict';
2
+ const fs = require('fs');
3
+ const yargs = require('yargs');
4
+ const argv = yargs(process.argv).argv;
5
+
6
+ /**
7
+ * Updates the @wavemaker/app-ng-runtime dependency in the specified package.json file.
8
+ * @param {string} path - The path to the package.json file to update.
9
+ */
10
+
11
+ const updateNgRuntimePackage = (path) => {
12
+ if (fs.existsSync(path)) {
13
+ const packageJSON = require('../' + path);
14
+ packageJSON['dependencies']['@wavemaker/app-ng-runtime'] = argv["publish-version"];
15
+ fs.writeFileSync(path, JSON.stringify(packageJSON, null, 4));
16
+ } else {
17
+ console.log('package.json not found at ' + path);
18
+ }
19
+ };
20
+ const init = () => {
21
+ updateNgRuntimePackage('../wavemaker-studio-runtime-integration/package.json');
22
+ };
23
+
24
+ init();
@@ -35,8 +35,8 @@
35
35
  "@babel/runtime": "7.14.8",
36
36
  "@metrichor/jmespath": "0.3.1",
37
37
  "@wavemaker/focus-trap": "1.0.1",
38
- "@wavemaker/nvd3": "1.8.11",
39
- "@wavemaker/variables": "12.0.0-next.140494",
38
+ "@wavemaker/nvd3": "1.8.12",
39
+ "@wavemaker/variables": "12.0.0-next.140498",
40
40
  "@ztree/ztree_v3": "3.5.48",
41
41
  "angular-imask": "^7.6.1",
42
42
  "angular2-websocket": "0.9.7",
@@ -6389,17 +6389,17 @@
6389
6389
  }
6390
6390
  },
6391
6391
  "node_modules/@wavemaker/nvd3": {
6392
- "version": "1.8.11",
6393
- "resolved": "https://registry.npmjs.org/@wavemaker/nvd3/-/nvd3-1.8.11.tgz",
6394
- "integrity": "sha512-XmsP86qUvOG/Iwavuw79jhAwYoM23maLQeEus92zzSCotsaTZ096j0mVgpe08tTvFbWB6IUdp3bX8TPtVyqyVg==",
6392
+ "version": "1.8.12",
6393
+ "resolved": "https://registry.npmjs.org/@wavemaker/nvd3/-/nvd3-1.8.12.tgz",
6394
+ "integrity": "sha512-e1iwZYgIKNGLAnefOagufFiA7bDyIQpb8Z2kUwzutUpnlFFyHvfGsTxPOAUPxGKnogQbI9lY2m4gn7EFkX7qlQ==",
6395
6395
  "peerDependencies": {
6396
6396
  "d3": "7.8.5"
6397
6397
  }
6398
6398
  },
6399
6399
  "node_modules/@wavemaker/variables": {
6400
- "version": "12.0.0-next.140494",
6401
- "resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-12.0.0-next.140494.tgz",
6402
- "integrity": "sha512-SqFEwmOhFMGSZ2u7QwsCKrcscvIf58rNUjukcckSUSY8t9ldmnYIAHN2sbjQqkuDf0/2DdMdd7d1LASsRo8dyA==",
6400
+ "version": "12.0.0-next.140498",
6401
+ "resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-12.0.0-next.140498.tgz",
6402
+ "integrity": "sha512-3i8OjCMhrq4elG+kmTwHfVGCxO9o1mRWlCrljE0a5bvwDsRWUsWBKUeHd4IJgOZSXrd2vV2LZ/JNb2J0lylvng==",
6403
6403
  "dependencies": {
6404
6404
  "@metrichor/jmespath": "^0.3.1",
6405
6405
  "he": "^1.2.0",
@@ -44,8 +44,8 @@
44
44
  "@babel/runtime": "7.14.8",
45
45
  "@metrichor/jmespath": "0.3.1",
46
46
  "@wavemaker/focus-trap": "1.0.1",
47
- "@wavemaker/nvd3": "1.8.11",
48
- "@wavemaker/variables": "12.0.0-next.140494",
47
+ "@wavemaker/nvd3": "1.8.12",
48
+ "@wavemaker/variables": "12.0.0-next.140498",
49
49
  "@ztree/ztree_v3": "3.5.48",
50
50
  "angular-imask": "^7.6.1",
51
51
  "angular2-websocket": "0.9.7",
@@ -70,7 +70,7 @@
70
70
  "tslib": "2.4.1",
71
71
  "x2js": "3.4.4",
72
72
  "zone.js": "0.14.7",
73
- "@wavemaker/app-ng-runtime": "12.0.0-next.140494"
73
+ "@wavemaker/app-ng-runtime": "12.0.0-next.140498"
74
74
  },
75
75
  "devDependencies": {
76
76
  "@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "12.0.0-next.140494",
3
+ "version": "12.0.0-next.140498",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {