@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 +10 -4
- package/constants/manifest.js +1 -0
- package/helpers/manifest.js +1 -0
- package/package.json +1 -1
- package/scripts/ui/zipAppSource.js +1 -0
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.
|
|
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
|
-
* **
|
|
11
|
-
|
|
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
|
-
|
|
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
|
|
package/constants/manifest.js
CHANGED
|
@@ -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',
|
package/helpers/manifest.js
CHANGED
package/package.json
CHANGED