@revturbine/cli 0.3.0 → 0.3.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/dist/cli.js +3 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -5222,7 +5222,7 @@ var AuthSsoProviderSchema = IdField.extend({
|
|
|
5222
5222
|
}).meta({ id: "AuthSsoProvider", "x-revturbine-schema-persistence": Persisted23, "x-revturbine-schema-exposure": Internal19 });
|
|
5223
5223
|
|
|
5224
5224
|
// src/schema/version.ts
|
|
5225
|
-
var SCHEMA_VERSION = "0.1.
|
|
5225
|
+
var SCHEMA_VERSION = "0.1.107";
|
|
5226
5226
|
|
|
5227
5227
|
// src/lib/credentials.ts
|
|
5228
5228
|
import { chmodSync, existsSync, mkdirSync, readFileSync, statSync, writeFileSync } from "fs";
|
|
@@ -5553,7 +5553,7 @@ function formatDiff(diff) {
|
|
|
5553
5553
|
}
|
|
5554
5554
|
|
|
5555
5555
|
// src/lib/config-validate.ts
|
|
5556
|
-
var BLOCKING_SEVERITIES = /* @__PURE__ */ new Set(["error_draft", "
|
|
5556
|
+
var BLOCKING_SEVERITIES = /* @__PURE__ */ new Set(["error_draft", "error_launch"]);
|
|
5557
5557
|
function isBlockingFinding(finding) {
|
|
5558
5558
|
return BLOCKING_SEVERITIES.has(finding.severity);
|
|
5559
5559
|
}
|
|
@@ -5940,7 +5940,7 @@ program.command("validate").description("Run config-validation against a staged
|
|
|
5940
5940
|
${LOG} Validation for playbook version ${playbookVersionId}:`);
|
|
5941
5941
|
console.log(formatFindings(result.findings));
|
|
5942
5942
|
if (hasBlockingFindings(result.findings)) {
|
|
5943
|
-
const blocking = result.findings.filter((f) => f.severity === "error_draft" || f.severity === "
|
|
5943
|
+
const blocking = result.findings.filter((f) => f.severity === "error_draft" || f.severity === "error_launch");
|
|
5944
5944
|
console.error(`${LOG} \u2717 ${blocking.length} blocking finding(s) \u2014 this draft cannot be deployed.`);
|
|
5945
5945
|
process.exit(1);
|
|
5946
5946
|
}
|
package/package.json
CHANGED