@synkro-sh/cli 1.4.91 → 1.4.92
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 +2 -2
- package/package.json +1 -1
package/dist/bootstrap.js
CHANGED
|
@@ -5660,7 +5660,7 @@ function writeConfigEnv(opts) {
|
|
|
5660
5660
|
`SYNKRO_CREDENTIALS_PATH=${shellQuoteSingle(credsPath)}`,
|
|
5661
5661
|
`SYNKRO_TIER=${shellQuoteSingle(safeTier)}`,
|
|
5662
5662
|
`SYNKRO_INFERENCE=${shellQuoteSingle(safeInference)}`,
|
|
5663
|
-
`SYNKRO_VERSION=${shellQuoteSingle("1.4.
|
|
5663
|
+
`SYNKRO_VERSION=${shellQuoteSingle("1.4.92")}`
|
|
5664
5664
|
];
|
|
5665
5665
|
if (safeSynkroBin) lines.push(`SYNKRO_CLI_BIN=${shellQuoteSingle(safeSynkroBin)}`);
|
|
5666
5666
|
if (safeUserId) lines.push(`SYNKRO_USER_ID=${shellQuoteSingle(safeUserId)}`);
|
|
@@ -7095,7 +7095,7 @@ var args = process.argv.slice(2);
|
|
|
7095
7095
|
var cmd = args[0] || "";
|
|
7096
7096
|
var subArgs = args.slice(1);
|
|
7097
7097
|
function printVersion() {
|
|
7098
|
-
console.log("1.4.
|
|
7098
|
+
console.log("1.4.92");
|
|
7099
7099
|
}
|
|
7100
7100
|
function printHelp() {
|
|
7101
7101
|
console.log(`Synkro CLI \u2014 runtime safety for AI coding agents
|
package/package.json
CHANGED