@wavemaker/angular-codegen 11.8.0-rc.5684 → 11.8.1-next.1417116
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();
|
|
@@ -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.11",
|
|
39
|
-
"@wavemaker/variables": "11.8.
|
|
39
|
+
"@wavemaker/variables": "11.8.1-next.1417116",
|
|
40
40
|
"@ztree/ztree_v3": "3.5.48",
|
|
41
41
|
"angular-imask": "^7.6.1",
|
|
42
42
|
"angular2-websocket": "0.9.7",
|
|
@@ -6452,9 +6452,9 @@
|
|
|
6452
6452
|
}
|
|
6453
6453
|
},
|
|
6454
6454
|
"node_modules/@wavemaker/variables": {
|
|
6455
|
-
"version": "11.8.
|
|
6456
|
-
"resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.8.
|
|
6457
|
-
"integrity": "sha512
|
|
6455
|
+
"version": "11.8.1-next.1417116",
|
|
6456
|
+
"resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.8.1-next.1417116.tgz",
|
|
6457
|
+
"integrity": "sha512-TDD7pucufR+jqcEoIMUjOcPPjCsL6q8JOYbZPPx31Cg8KNwliP0V2J0SzUJAzs2FG/tfaVBaV3oiAngOJej57g==",
|
|
6458
6458
|
"dependencies": {
|
|
6459
6459
|
"@metrichor/jmespath": "^0.3.1",
|
|
6460
6460
|
"he": "^1.2.0",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@metrichor/jmespath": "0.3.1",
|
|
46
46
|
"@wavemaker/focus-trap": "1.0.1",
|
|
47
47
|
"@wavemaker/nvd3": "1.8.11",
|
|
48
|
-
"@wavemaker/variables": "11.8.
|
|
48
|
+
"@wavemaker/variables": "11.8.1-next.1417116",
|
|
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": "11.8.
|
|
73
|
+
"@wavemaker/app-ng-runtime": "11.8.1-next.1417116"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
|