@corva/create-app 0.87.0-0 → 0.87.0-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/cli.js +3 -1
- package/lib/constants/package.js +4 -4
- package/lib/flows/lib/manifest.js +1 -1
- package/lib/helpers/resolve-app-runtime.js +1 -1
- package/package.json +3 -2
- package/templates/scheduler_data-time/javascript/__tests__/processor.spec.js +1 -1
- package/templates/scheduler_data-time/typescript/__tests__/processor.spec.ts +1 -1
- package/templates/scheduler_depth/javascript/__tests__/processor.spec.js +1 -1
- package/templates/scheduler_depth/typescript/__tests__/processor.spec.ts +1 -1
- package/templates/scheduler_natural-time/javascript/__tests__/processor.spec.js +1 -1
- package/templates/scheduler_natural-time/typescript/__tests__/processor.spec.ts +1 -1
- package/templates/stream_depth/javascript/__tests__/processor.spec.js +1 -1
- package/templates/stream_depth/typescript/__tests__/processor.spec.ts +1 -1
- package/templates/stream_time/javascript/__tests__/processor.spec.js +1 -1
- package/templates/stream_time/typescript/__tests__/processor.spec.ts +1 -1
- package/templates/task/javascript/__tests__/processor.spec.js +1 -1
- package/templates/task/typescript/__tests__/processor.spec.ts +1 -1
package/lib/constants/cli.js
CHANGED
|
@@ -2,8 +2,10 @@ export const APP_RUNTIMES = {
|
|
|
2
2
|
UI: 'ui',
|
|
3
3
|
// NODE12: 'nodejs12.x',
|
|
4
4
|
// NODE14: 'nodejs14.x',
|
|
5
|
-
NODE16: 'nodejs16.x',
|
|
5
|
+
// NODE16: 'nodejs16.x',
|
|
6
6
|
NODE18: 'nodejs18.x',
|
|
7
|
+
NODE20: 'nodejs20.x',
|
|
8
|
+
// NODE22: 'nodejs22.x',
|
|
7
9
|
PYTHON3_8: 'python3.8',
|
|
8
10
|
PYTHON3_9: 'python3.9',
|
|
9
11
|
};
|
package/lib/constants/package.js
CHANGED
|
@@ -152,17 +152,17 @@ const nodeDependencies = {
|
|
|
152
152
|
|
|
153
153
|
const nodeDevDependencies = {
|
|
154
154
|
'@corva/eslint-config-node': '^5.1.1',
|
|
155
|
-
'jest': '^
|
|
155
|
+
'jest': '^29.7.0',
|
|
156
156
|
'dotenv': '^16.0.3',
|
|
157
157
|
'eslint': '^8.2.0',
|
|
158
158
|
'prettier': '^2.0.0',
|
|
159
|
-
'typescript': '^
|
|
159
|
+
'typescript': '^5.5.4',
|
|
160
160
|
};
|
|
161
161
|
|
|
162
162
|
const nodeTsDevDependencies = {
|
|
163
163
|
...nodeDevDependencies,
|
|
164
|
-
'@types/jest': '^
|
|
165
|
-
'ts-jest': '^
|
|
164
|
+
'@types/jest': '^29.5.12',
|
|
165
|
+
'ts-jest': '^29.2.4',
|
|
166
166
|
};
|
|
167
167
|
|
|
168
168
|
const nodeYarnScripts = {
|
|
@@ -11,7 +11,7 @@ const SCHEDULER_MAPPING = [SCHEDULER_TYPE_DATA_TIME, SCHEDULER_TYPE_DEPTH, SCHED
|
|
|
11
11
|
{},
|
|
12
12
|
);
|
|
13
13
|
|
|
14
|
-
const NODE_RUNTIMES = [APP_RUNTIMES.
|
|
14
|
+
const NODE_RUNTIMES = [APP_RUNTIMES.NODE18, APP_RUNTIMES.NODE20];
|
|
15
15
|
|
|
16
16
|
export class Manifest {
|
|
17
17
|
constructor(manifest) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@corva/create-app",
|
|
3
|
-
"version": "0.87.0-
|
|
3
|
+
"version": "0.87.0-1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Create an app to use it in CORVA.AI",
|
|
6
6
|
"keywords": [
|
|
@@ -100,5 +100,6 @@
|
|
|
100
100
|
"skip": {
|
|
101
101
|
"tag": true
|
|
102
102
|
}
|
|
103
|
-
}
|
|
103
|
+
},
|
|
104
|
+
"packageManager": "yarn@1.22.19+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71"
|
|
104
105
|
}
|