@corva/create-app 0.87.0-0 → 0.87.0-rc.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.
@@ -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
  };
@@ -152,17 +152,17 @@ const nodeDependencies = {
152
152
 
153
153
  const nodeDevDependencies = {
154
154
  '@corva/eslint-config-node': '^5.1.1',
155
- 'jest': '^27.5.1',
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': '^4.9.4',
159
+ 'typescript': '^5.5.4',
160
160
  };
161
161
 
162
162
  const nodeTsDevDependencies = {
163
163
  ...nodeDevDependencies,
164
- '@types/jest': '^27.4.1',
165
- 'ts-jest': '^27.1.4',
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.NODE16, APP_RUNTIMES.NODE18];
14
+ const NODE_RUNTIMES = [APP_RUNTIMES.NODE18, APP_RUNTIMES.NODE20];
15
15
 
16
16
  export class Manifest {
17
17
  constructor(manifest) {
@@ -61,8 +61,8 @@ export const IS_WINDOWS = process.platform === 'win32';
61
61
 
62
62
  const semverVersionsMapping = {
63
63
  node: {
64
- 16: '16.19.0',
65
64
  18: '18.13.0',
65
+ 20: '20.16.0',
66
66
  },
67
67
  python: {
68
68
  '3.8': '3.8.16',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corva/create-app",
3
- "version": "0.87.0-0",
3
+ "version": "0.87.0-rc.0",
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
  }
@@ -1,5 +1,5 @@
1
1
  const { ScheduledDataTimeEvent } = require('@corva/node-sdk');
2
- const { app_runner } = require('@corva/node-sdk/lib/testing');
2
+ const { app_runner } = require('@corva/node-sdk/testing');
3
3
 
4
4
  const { processor } = require('..');
5
5
 
@@ -1,4 +1,4 @@
1
- import { app_runner } from '@corva/node-sdk/lib/testing';
1
+ import { app_runner } from '@corva/node-sdk/testing';
2
2
  import { ScheduledDataTimeEvent } from '@corva/node-sdk';
3
3
 
4
4
  import { processor } from '..';
@@ -1,5 +1,5 @@
1
1
  const { ScheduledDepthEvent } = require('@corva/node-sdk');
2
- const { app_runner } = require('@corva/node-sdk/lib/testing');
2
+ const { app_runner } = require('@corva/node-sdk/testing');
3
3
 
4
4
  const { processor } = require('..');
5
5
 
@@ -1,4 +1,4 @@
1
- import { app_runner } from '@corva/node-sdk/lib/testing';
1
+ import { app_runner } from '@corva/node-sdk/testing';
2
2
  import { ScheduledDepthEvent } from '@corva/node-sdk';
3
3
 
4
4
  import { processor } from '..';
@@ -1,5 +1,5 @@
1
1
  const { ScheduledNaturalTimeEvent } = require('@corva/node-sdk');
2
- const { app_runner } = require('@corva/node-sdk/lib/testing');
2
+ const { app_runner } = require('@corva/node-sdk/testing');
3
3
 
4
4
  const { processor } = require('..');
5
5
 
@@ -1,4 +1,4 @@
1
- import { app_runner } from '@corva/node-sdk/lib/testing';
1
+ import { app_runner } from '@corva/node-sdk/testing';
2
2
  import { ScheduledNaturalTimeEvent } from '@corva/node-sdk';
3
3
 
4
4
  import { processor } from '..';
@@ -1,5 +1,5 @@
1
1
  const { StreamDepthEvent, StreamDepthRecord } = require('@corva/node-sdk');
2
- const { app_runner } = require('@corva/node-sdk/lib/testing');
2
+ const { app_runner } = require('@corva/node-sdk/testing');
3
3
 
4
4
  const { processor } = require('..');
5
5
 
@@ -1,4 +1,4 @@
1
- import { app_runner } from '@corva/node-sdk/lib/testing';
1
+ import { app_runner } from '@corva/node-sdk/testing';
2
2
  import { StreamDepthEvent, StreamDepthRecord } from '@corva/node-sdk';
3
3
 
4
4
  import { processor } from '..';
@@ -1,5 +1,5 @@
1
1
  const { StreamTimeEvent, StreamTimeRecord } = require('@corva/node-sdk');
2
- const { app_runner } = require('@corva/node-sdk/lib/testing');
2
+ const { app_runner } = require('@corva/node-sdk/testing');
3
3
 
4
4
  const { processor } = require('..');
5
5
 
@@ -1,4 +1,4 @@
1
- import { app_runner } from '@corva/node-sdk/lib/testing';
1
+ import { app_runner } from '@corva/node-sdk/testing';
2
2
  import { StreamTimeEvent, StreamTimeRecord } from '@corva/node-sdk';
3
3
 
4
4
  import { processor } from '..';
@@ -1,5 +1,5 @@
1
1
  const { TaskEvent } = require('@corva/node-sdk');
2
- const { app_runner } = require('@corva/node-sdk/lib/testing');
2
+ const { app_runner } = require('@corva/node-sdk/testing');
3
3
 
4
4
  const { processor } = require('..');
5
5
 
@@ -1,4 +1,4 @@
1
- import { app_runner } from '@corva/node-sdk/lib/testing';
1
+ import { app_runner } from '@corva/node-sdk/testing';
2
2
  import { TaskEvent } from '@corva/node-sdk';
3
3
 
4
4
  import { processor } from '..';