@corva/create-app 0.63.0-rc.0 → 0.64.0-1
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/README.md +1 -1
- package/lib/commands/release.js +1 -1
- package/lib/flows/lib/api.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -176,7 +176,7 @@ Options:
|
|
|
176
176
|
--env [string] Environment to use (choices: "qa", "staging", "production", default: "qa")
|
|
177
177
|
--api-key [string] Pre generated API key for authorization during app upload
|
|
178
178
|
--notes [string] Add custom notes to published app
|
|
179
|
-
--label [string] Put a label on the release (choices: "BETA", "
|
|
179
|
+
--label [string] Put a label on the release (choices: "DEV", "BETA", "PROD")
|
|
180
180
|
--remove-on-fail [boolean] Remove release if it fails during deployment (default: false)
|
|
181
181
|
--silent [boolean] Only log result of the operation (default: false)
|
|
182
182
|
--remove-on-success App package (.zip) will not be deleted after upload (default: true)
|
package/lib/commands/release.js
CHANGED
|
@@ -22,7 +22,7 @@ export const releaseCommand = new Command('release')
|
|
|
22
22
|
.addOption(apiKeyOption)
|
|
23
23
|
.addOption(originalCwdOption)
|
|
24
24
|
.addOption(new Option('--notes [string]', 'Add custom notes to published app'))
|
|
25
|
-
.addOption(new Option('--label [string]', 'Put a label on the release').choices(['BETA', 'PROD']))
|
|
25
|
+
.addOption(new Option('--label [string]', 'Put a label on the release').choices(['DEV', 'BETA', 'PROD']))
|
|
26
26
|
.addOption(new Option('--remove-on-fail [boolean]', 'Remove release if it fails during deployment').default(false))
|
|
27
27
|
.addOption(
|
|
28
28
|
new Option('--remove-on-success [boolean]', 'App package (.zip) will not be deleted after upload').default(true),
|
package/lib/flows/lib/api.js
CHANGED