windmill-cli 1.725.1 → 1.726.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/esm/main.js +4 -4
- package/package.json +1 -1
package/esm/main.js
CHANGED
|
@@ -16772,7 +16772,7 @@ var init_OpenAPI = __esm(() => {
|
|
|
16772
16772
|
PASSWORD: undefined,
|
|
16773
16773
|
TOKEN: getEnv3("WM_TOKEN"),
|
|
16774
16774
|
USERNAME: undefined,
|
|
16775
|
-
VERSION: "1.
|
|
16775
|
+
VERSION: "1.726.1",
|
|
16776
16776
|
WITH_CREDENTIALS: true,
|
|
16777
16777
|
interceptors: {
|
|
16778
16778
|
request: new Interceptors,
|
|
@@ -25347,7 +25347,7 @@ var init_auth = __esm(async () => {
|
|
|
25347
25347
|
});
|
|
25348
25348
|
|
|
25349
25349
|
// src/core/constants.ts
|
|
25350
|
-
var WM_FORK_PREFIX = "wm-fork", VERSION = "1.
|
|
25350
|
+
var WM_FORK_PREFIX = "wm-fork", VERSION = "1.726.1";
|
|
25351
25351
|
|
|
25352
25352
|
// src/utils/git.ts
|
|
25353
25353
|
var exports_git = {};
|
|
@@ -67303,7 +67303,7 @@ async function isCaseInsensitiveFilesystem(dir) {
|
|
|
67303
67303
|
return result;
|
|
67304
67304
|
}
|
|
67305
67305
|
function preservePendingScriptLocks(remote, local) {
|
|
67306
|
-
const modMeta = getModuleFolderSuffix() +
|
|
67306
|
+
const modMeta = getModuleFolderSuffix() + "/script";
|
|
67307
67307
|
for (const metaKey of Object.keys(remote)) {
|
|
67308
67308
|
const isYaml = metaKey.endsWith(".script.yaml") || metaKey.endsWith(modMeta + ".yaml");
|
|
67309
67309
|
const isJson = metaKey.endsWith(".script.json") || metaKey.endsWith(modMeta + ".json");
|
|
@@ -67330,7 +67330,7 @@ function preservePendingScriptLocks(remote, local) {
|
|
|
67330
67330
|
const localLock = localParsed["lock"];
|
|
67331
67331
|
if (typeof localLock !== "string" || !localLock.startsWith("!inline "))
|
|
67332
67332
|
continue;
|
|
67333
|
-
const lockKey = localLock.slice("!inline ".length)
|
|
67333
|
+
const lockKey = localLock.slice("!inline ".length);
|
|
67334
67334
|
if (local[lockKey] === undefined)
|
|
67335
67335
|
continue;
|
|
67336
67336
|
remoteParsed["lock"] = localLock;
|