@corva/create-app 0.20.0-1 → 0.20.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 +22 -0
- package/constants/manifest.js +1 -0
- package/index.js +1 -1
- package/package.json +1 -1
- package/template/ui/js/.env +2 -0
- package/template/ui/js/.env.sample +6 -0
- package/template/ui/ts/.env +2 -0
- package/template/ui/ts/.env.sample +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
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](https://github.com/corva-ai/create-corva-app/compare/v0.19.0...v0.20.0) (2022-02-02)
|
|
6
|
+
|
|
7
|
+
## [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)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* **DC-2798:** add .env file ([42eb6fb](https://github.com/corva-ai/create-corva-app/commit/42eb6fb256c6b5238b449fa0d81bafa930dbbd91))
|
|
13
|
+
* **dc-2955:** get back -t option ([074d8ee](https://github.com/corva-ai/create-corva-app/commit/074d8ee8a629f211cd8991d71faf7ccbbeb1051e))
|
|
14
|
+
|
|
15
|
+
## [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)
|
|
16
|
+
|
|
17
|
+
## [0.20.0-2](https://github.com/corva-ai/create-corva-app/compare/v0.20.0-1...v0.20.0-2) (2022-01-17)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **DC-2798:** add .env file ([42eb6fb](https://github.com/corva-ai/create-corva-app/commit/42eb6fb256c6b5238b449fa0d81bafa930dbbd91))
|
|
23
|
+
|
|
5
24
|
## [0.20.0-1](https://github.com/corva-ai/create-corva-app/compare/v0.20.0-0...v0.20.0-1) (2022-01-05)
|
|
6
25
|
|
|
7
26
|
|
|
@@ -206,6 +225,9 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
206
225
|
## [0.6.0-0](https://github.com/facebook/create-react-app/compare/v0.5.0-0...v0.6.0-0) (2021-06-16)
|
|
207
226
|
|
|
208
227
|
## [0.5.0-0](https://github.com/facebook/create-react-app/compare/v0.2.29...v0.5.0-0) (2021-06-02)
|
|
228
|
+
## [0.4.0](https://github.com/facebook/create-react-app/compare/v0.4.0-rc.0...v0.4.0) (2021-06-16)
|
|
229
|
+
|
|
230
|
+
## [0.4.0-rc.0](https://github.com/facebook/create-react-app/compare/v0.2.29...v0.4.0-rc.0) (2021-06-02)
|
|
209
231
|
|
|
210
232
|
### [0.4.3](https://github.com/facebook/create-react-app/compare/v0.4.0...v0.4.3) (2021-05-26)
|
|
211
233
|
|
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') {
|
package/package.json
CHANGED