@corva/create-app 0.110.3 → 0.111.1
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.
package/lib/constants/package.js
CHANGED
|
@@ -10,7 +10,7 @@ const uiDependencies = {
|
|
|
10
10
|
'@icon-park/react': '1.4.2',
|
|
11
11
|
'classnames': '2.2.6',
|
|
12
12
|
'corva-convert-units': '1.10.33',
|
|
13
|
-
'highcharts': '
|
|
13
|
+
'highcharts': '10.3.3',
|
|
14
14
|
'highcharts-react-official': '2.2.2',
|
|
15
15
|
'lodash': '^4.17.21',
|
|
16
16
|
'mapbox.js': '3.2.1',
|
|
@@ -98,13 +98,12 @@ const resolveDataToZipUiApp = async (itemsToZip = [], { options, pkg, dirName, m
|
|
|
98
98
|
|
|
99
99
|
itemsToSave.push({
|
|
100
100
|
name: tmpPackageForSourceName,
|
|
101
|
-
content:
|
|
102
|
-
|
|
103
|
-
{
|
|
104
|
-
build:
|
|
101
|
+
content: {
|
|
102
|
+
...pkg,
|
|
103
|
+
scripts: {
|
|
104
|
+
build: pkg.scripts?.build,
|
|
105
105
|
},
|
|
106
|
-
|
|
107
|
-
),
|
|
106
|
+
},
|
|
108
107
|
});
|
|
109
108
|
|
|
110
109
|
const itemsToRemove = [tmpPackageForSourceName];
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import debugFn from 'debug';
|
|
2
2
|
import { APP_TYPES } from '../constants/cli.js';
|
|
3
|
-
|
|
4
|
-
const debug = debugFn('cca:resolve-app-runtime');
|
|
5
|
-
|
|
6
3
|
import spawn from 'cross-spawn';
|
|
7
4
|
import { promises as fs } from 'fs';
|
|
8
5
|
import os from 'os';
|
|
9
6
|
import semver from 'semver';
|
|
10
7
|
|
|
8
|
+
const debug = debugFn('cca:resolve-app-runtime');
|
|
9
|
+
|
|
11
10
|
/**
|
|
12
11
|
*
|
|
13
12
|
* @param {string} command
|
|
@@ -69,6 +68,7 @@ const semverVersionsMapping = {
|
|
|
69
68
|
'3.9': '3.9.16',
|
|
70
69
|
'3.10': '3.10.9',
|
|
71
70
|
'3.11': '3.11.1',
|
|
71
|
+
'3.13': '3.13.7',
|
|
72
72
|
},
|
|
73
73
|
};
|
|
74
74
|
|