@corva/create-app 0.20.0-rc.1 → 0.21.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.
package/CHANGELOG.md CHANGED
@@ -2,15 +2,21 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
- ## [0.20.0-rc.1](https://github.com/corva-ai/create-corva-app/compare/v0.20.0-1...v0.20.0-rc.1) (2022-02-01)
5
+ ## [0.21.0-rc.0](https://github.com/corva-ai/create-corva-app/compare/v0.21.0-2...v0.21.0-rc.0) (2022-02-01)
6
+
7
+ ## [0.21.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.21.0-1...v0.21.0-2) (2022-01-25)
6
8
 
7
9
 
8
10
  ### Bug Fixes
9
11
 
10
- * **DC-2798:** add .env file ([42eb6fb](https://github.com/corva-ai/create-corva-app/commit/42eb6fb256c6b5238b449fa0d81bafa930dbbd91))
11
- * **dc-2955:** get back -t option ([074d8ee](https://github.com/corva-ai/create-corva-app/commit/074d8ee8a629f211cd8991d71faf7ccbbeb1051e))
12
+ * **dc-2955:** get back -t option ([b6ffc5f](https://github.com/corva-ai/create-corva-app/commit/b6ffc5f38e818d038bf8c7346fa7183a18d97fa6))
13
+
14
+ ## [0.21.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.21.0-0...v0.21.0-1) (2022-01-21)
15
+
16
+
17
+ ### Bug Fixes
12
18
 
13
- ## [0.20.0-rc.0](https://github.com/corva-ai/create-corva-app/compare/v0.20.0-2...v0.20.0-rc.0) (2022-01-18)
19
+ * pass depth milestone ([abab200](https://github.com/corva-ai/create-corva-app/commit/abab20069f41bda35c2059102f1629a35575042f))
14
20
 
15
21
  ## [0.20.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.20.0-1...v0.20.0-2) (2022-01-17)
16
22
 
@@ -141,6 +141,7 @@ const manifestOptions = (projectName) => [
141
141
  message: 'Provide depth milestone for the scheduler',
142
142
  default: 1,
143
143
  when: (answers) => answers.schedulerType === SCHEDULER_TYPE_DEPTH.value,
144
+ filter: (value) => (isNaN(value) ? value : Number(value))
144
145
  },
145
146
  {
146
147
  name: 'appKey',
@@ -38,6 +38,7 @@ function fillManifest(answers) {
38
38
  type: answers.appType,
39
39
  schedulerType: answers.schedulerType,
40
40
  cronString: answers.cronString,
41
+ depthMilestone: answers.depthMilestone
41
42
  }),
42
43
  },
43
44
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corva/create-app",
3
- "version": "0.20.0-rc.1",
3
+ "version": "0.21.0-rc.0",
4
4
  "private": false,
5
5
  "description": "Create app to use it in CORVA.AI",
6
6
  "keywords": [
@@ -87,6 +87,7 @@ async function compressAppToZip(useYarn) {
87
87
  'manifest.json',
88
88
  'config-overrides.js',
89
89
  'tsconfig.json',
90
+ '.npmrc',
90
91
  useYarn ? 'yarn.lock' : 'package-lock.json',
91
92
  ].forEach((name) => {
92
93
  const file = path.resolve(dirname, name);