@corva/create-app 0.21.0-1 → 0.21.0-2
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 +7 -0
- package/constants/manifest.js +1 -0
- package/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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.21.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.21.0-1...v0.21.0-2) (2022-01-25)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **dc-2955:** get back -t option ([b6ffc5f](https://github.com/corva-ai/create-corva-app/commit/b6ffc5f38e818d038bf8c7346fa7183a18d97fa6))
|
|
11
|
+
|
|
5
12
|
## [0.21.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.21.0-0...v0.21.0-1) (2022-01-21)
|
|
6
13
|
|
|
7
14
|
|
package/constants/manifest.js
CHANGED
package/index.js
CHANGED
|
@@ -96,7 +96,7 @@ async function initialChecks() {
|
|
|
96
96
|
|
|
97
97
|
manifestConstants.manifestOptions(projectName).forEach((value) => {
|
|
98
98
|
const type = typeof value.default;
|
|
99
|
-
const option = new commander.Option(
|
|
99
|
+
const option = new commander.Option(`${value.alias ? `-${value.alias}, ` : ''}--${value.name} [${type !== 'undefined' && type || 'string'}]`, value.message);
|
|
100
100
|
|
|
101
101
|
if (value.choices) {
|
|
102
102
|
if (typeof value.choices === 'function') {
|