@corva/create-app 0.21.0-1 → 0.22.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,6 +2,17 @@
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.22.0-rc.0](https://github.com/corva-ai/create-corva-app/compare/v0.22.0-0...v0.22.0-rc.0) (2022-02-15)
6
+
7
+ ## [0.22.0-0](https://github.com/corva-ai/create-corva-app/compare/v0.21.0-2...v0.22.0-0) (2022-02-01)
8
+
9
+ ## [0.21.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.21.0-1...v0.21.0-2) (2022-01-25)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * **dc-2955:** get back -t option ([b6ffc5f](https://github.com/corva-ai/create-corva-app/commit/b6ffc5f38e818d038bf8c7346fa7183a18d97fa6))
15
+
5
16
  ## [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
17
 
7
18
 
@@ -203,6 +203,7 @@ const manifestOptions = (projectName) => [
203
203
  {
204
204
  type: 'confirm',
205
205
  name: 'useTypescript',
206
+ alias: 't',
206
207
  message: 'Would you like to use TypesScript?',
207
208
  default: false,
208
209
  when: (answers) =>
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(`--${value.name} [${type !== 'undefined' && type || 'string'}]`, value.message);
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') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corva/create-app",
3
- "version": "0.21.0-1",
3
+ "version": "0.22.0-rc.0",
4
4
  "private": false,
5
5
  "description": "Create app to use it in CORVA.AI",
6
6
  "keywords": [