paratix 0.1.0 → 0.2.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/dist/cli.js +2 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -695,7 +695,7 @@ async function loadServerDefinitionFromFile(file, options) {
|
|
|
695
695
|
return definition;
|
|
696
696
|
}
|
|
697
697
|
var program = new Command();
|
|
698
|
-
program.name("paratix").description("Idempotent VPS setup tool in TypeScript").version("0.
|
|
698
|
+
program.name("paratix").description("Idempotent VPS setup tool in TypeScript").version("0.2.0");
|
|
699
699
|
program.command("apply <file>").description("Apply a server definition").option(
|
|
700
700
|
"--dry-run",
|
|
701
701
|
"Only check, do not apply. Some modules validate prospective config but cannot verify runtime restarts.",
|
|
@@ -707,7 +707,7 @@ program.command("apply <file>").description("Apply a server definition").option(
|
|
|
707
707
|
DEFAULT_RECONNECT_TIMEOUT_SECONDS
|
|
708
708
|
).option("--verbose", "Show full stack traces on error", false).action(async (file, options) => {
|
|
709
709
|
try {
|
|
710
|
-
printCliHeader("0.
|
|
710
|
+
printCliHeader("0.2.0");
|
|
711
711
|
const environmentOverrides = applyCliEnvironmentOverrides(
|
|
712
712
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion -- Commander options typed as Record<string, unknown>
|
|
713
713
|
options.env,
|