@corva/create-app 0.110.2 → 0.111.0
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',
|
|
@@ -138,6 +138,9 @@ const uiPackage = {
|
|
|
138
138
|
'lint-staged': {
|
|
139
139
|
'src/**/*.{js,jsx,ts,tsx}': 'eslint --fix',
|
|
140
140
|
},
|
|
141
|
+
'resolutions': {
|
|
142
|
+
'@noble/hashes': '1.8.0',
|
|
143
|
+
},
|
|
141
144
|
};
|
|
142
145
|
|
|
143
146
|
const tsUiPackage = {
|
|
@@ -145,8 +148,8 @@ const tsUiPackage = {
|
|
|
145
148
|
devDependencies: tsUiDevDependencies,
|
|
146
149
|
// todo: temporary solution, ref https://github.com/oppia/oppia/issues/22283#issuecomment-2756641371
|
|
147
150
|
resolutions: {
|
|
151
|
+
...uiPackage.resolutions,
|
|
148
152
|
'@types/babel__traverse': '7.20.6',
|
|
149
|
-
'@noble/hashes': '1.8.0',
|
|
150
153
|
},
|
|
151
154
|
};
|
|
152
155
|
|
|
@@ -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
|
|