@synkro-sh/cli 1.7.42 → 1.7.43
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/bootstrap.js +7 -3
- package/dist/bootstrap.js.map +1 -1
- package/package.json +1 -1
package/dist/bootstrap.js
CHANGED
|
@@ -4826,7 +4826,7 @@ function writeConfigEnv(opts) {
|
|
|
4826
4826
|
`SYNKRO_CREDENTIALS_PATH=${shellQuoteSingle(credsPath)}`,
|
|
4827
4827
|
`SYNKRO_TIER=${shellQuoteSingle(safeTier)}`,
|
|
4828
4828
|
`SYNKRO_INFERENCE=${shellQuoteSingle(safeInference)}`,
|
|
4829
|
-
`SYNKRO_VERSION=${shellQuoteSingle("1.7.
|
|
4829
|
+
`SYNKRO_VERSION=${shellQuoteSingle("1.7.43")}`
|
|
4830
4830
|
];
|
|
4831
4831
|
if (safeSynkroBin) lines.push(`SYNKRO_CLI_BIN=${shellQuoteSingle(safeSynkroBin)}`);
|
|
4832
4832
|
if (safeUserId) lines.push(`SYNKRO_USER_ID=${shellQuoteSingle(safeUserId)}`);
|
|
@@ -7259,7 +7259,11 @@ async function disconnectCommand(args2 = []) {
|
|
|
7259
7259
|
rmSync2(SYNKRO_DIR7, { recursive: true, force: true });
|
|
7260
7260
|
console.log(`\u2713 wiped ${SYNKRO_DIR7} entirely \u2014 including all scan data and backups`);
|
|
7261
7261
|
} else {
|
|
7262
|
-
const keep = /* @__PURE__ */ new Set([
|
|
7262
|
+
const keep = /* @__PURE__ */ new Set([
|
|
7263
|
+
join13(SYNKRO_DIR7, "pgdata"),
|
|
7264
|
+
join13(SYNKRO_DIR7, "pgdata-backups"),
|
|
7265
|
+
join13(SYNKRO_DIR7, ".transcript-offsets")
|
|
7266
|
+
]);
|
|
7263
7267
|
const preserved = [];
|
|
7264
7268
|
for (const entry of readdirSync4(SYNKRO_DIR7)) {
|
|
7265
7269
|
const full = join13(SYNKRO_DIR7, entry);
|
|
@@ -9039,7 +9043,7 @@ var args = process.argv.slice(2);
|
|
|
9039
9043
|
var cmd = args[0] || "";
|
|
9040
9044
|
var subArgs = args.slice(1);
|
|
9041
9045
|
function printVersion() {
|
|
9042
|
-
console.log("1.7.
|
|
9046
|
+
console.log("1.7.43");
|
|
9043
9047
|
}
|
|
9044
9048
|
function printHelp2() {
|
|
9045
9049
|
console.log(`Synkro CLI \u2014 runtime safety for AI coding agents
|