@coalescesoftware/coa 1.0.158 → 1.0.159
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/bin/index.js +3 -1
- package/package.json +2 -3
package/bin/index.js
CHANGED
|
@@ -205,6 +205,7 @@ AddOverridesToCommand(program.command(Shared.CLIOperations.ECLICommands.Deploy))
|
|
|
205
205
|
AddOverridesToCommand(program.command(Shared.CLIOperations.ECLICommands.Refresh))
|
|
206
206
|
.description("runs a Coalesce pipeline")
|
|
207
207
|
.option("-o, --out <output json>", "Run Results Output in Json ")
|
|
208
|
+
.option("--forceIgnoreWorkspaceStatus", "Ignore the workspace status and refresh even if there is a failed deploy. This may cause refresh failures!")
|
|
208
209
|
.action((options, command) => {
|
|
209
210
|
const cliOverrides = ComputeCLIOverrides(command);
|
|
210
211
|
const optsWithGlobals = command.optsWithGlobals();
|
|
@@ -240,7 +241,8 @@ AddOverridesToCommand(program.command(Shared.CLIOperations.ECLICommands.Refresh)
|
|
|
240
241
|
environmentID: config.runDetails.environmentID,
|
|
241
242
|
jobID: config.runDetails.jobID,
|
|
242
243
|
includeNodesSelector: config.runDetails.includeNodesSelector,
|
|
243
|
-
excludeNodesSelector: config.runDetails.excludeNodesSelector
|
|
244
|
+
excludeNodesSelector: config.runDetails.excludeNodesSelector,
|
|
245
|
+
forceIgnoreWorkspaceStatus: optsWithGlobals.forceIgnoreWorkspaceStatus,
|
|
244
246
|
},
|
|
245
247
|
userCredentials: config.userCredentials,
|
|
246
248
|
runTimeParameters: runtimeParametersObject,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coalescesoftware/coa",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.159",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"author": "Coalesce Automation, Inc.",
|
|
6
6
|
"main": "index.js",
|
|
@@ -12,11 +12,10 @@
|
|
|
12
12
|
"start-cli-debug": "yarn run start --debug"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@coalescesoftware/shared": "^1.0.
|
|
15
|
+
"@coalescesoftware/shared": "^1.0.159",
|
|
16
16
|
"chalk": "^4.1.2",
|
|
17
17
|
"commander": "^9.2.0",
|
|
18
18
|
"firebase": "8.2.0",
|
|
19
|
-
"global": "^4.4.0",
|
|
20
19
|
"immer": "^9.0.12",
|
|
21
20
|
"ini": "^3.0.0",
|
|
22
21
|
"ink": "^3.2.0",
|