windmill-cli 0.0.16 → 1.391.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.d.ts +1 -1
- package/esm/main.d.ts.map +1 -1
- package/esm/main.js +1 -1
- package/esm/upgrade.d.ts.map +1 -1
- package/esm/upgrade.js +0 -1
- package/package.json +1 -1
package/esm/main.d.ts
CHANGED
package/esm/main.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":";AACA,OAAO,qBAAqB,CAAC;AAuC7B,eAAO,MAAM,OAAO,
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":";AACA,OAAO,qBAAqB,CAAC;AAuC7B,eAAO,MAAM,OAAO,YAAY,CAAC;AAEjC,QAAA,IAAI,OAAO,EAAE,GA2EsC,CAAC;AAKpD,eAAO,IAAI,SAAS,SAAQ,CAAC;AA8D7B,eAAe,OAAO,CAAC"}
|
package/esm/main.js
CHANGED
|
@@ -27,7 +27,7 @@ import { NpmProvider } from "./upgrade.js";
|
|
|
27
27
|
// console.error(JSON.stringify(event.error, null, 4));
|
|
28
28
|
// }
|
|
29
29
|
// });
|
|
30
|
-
export const VERSION = "
|
|
30
|
+
export const VERSION = "1.391.1";
|
|
31
31
|
let command = new Command()
|
|
32
32
|
.name("wmill")
|
|
33
33
|
.action(() => log.info(`Welcome to Windmill CLI ${VERSION}. Use -h for help.`))
|
package/esm/upgrade.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"upgrade.d.ts","sourceRoot":"","sources":["../src/upgrade.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAErC,MAAM,MAAM,kBAAkB,GAAG;IAAE,IAAI,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,GAAG,CAAA;CAAE,GAAG,CAC/D;IACE,OAAO,EAAE,MAAM,CAAC;CACjB,GACD;IACE,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,CACJ,CAAC;AAEF,qBAAa,WAAY,SAAQ,QAAQ;IACvC,IAAI,SAAS;IACb,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAwB;IACtD,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAiC;IACxD,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAS;gBAE1B,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,EAAE,EAAE,kBAAkB;IAMtD,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC;
|
|
1
|
+
{"version":3,"file":"upgrade.d.ts","sourceRoot":"","sources":["../src/upgrade.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAErC,MAAM,MAAM,kBAAkB,GAAG;IAAE,IAAI,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,GAAG,CAAA;CAAE,GAAG,CAC/D;IACE,OAAO,EAAE,MAAM,CAAC;CACjB,GACD;IACE,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,CACJ,CAAC;AAEF,qBAAa,WAAY,SAAQ,QAAQ;IACvC,IAAI,SAAS;IACb,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAwB;IACtD,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAiC;IACxD,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAS;gBAE1B,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,EAAE,EAAE,kBAAkB;IAMtD,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC;IAqB7C,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM;IAOxD,cAAc,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM;CAGtD"}
|
package/esm/upgrade.js
CHANGED
|
@@ -29,7 +29,6 @@ export class NpmProvider extends Provider {
|
|
|
29
29
|
this.packageName = "package" in options ? options.package : options.name;
|
|
30
30
|
}
|
|
31
31
|
async getVersions(name) {
|
|
32
|
-
console.log("fetching versions for", name);
|
|
33
32
|
const response = await fetch(new URL(`${this.packageName ?? name}`, this.apiUrl));
|
|
34
33
|
if (!response.ok) {
|
|
35
34
|
throw new Error("couldn't fetch the latest version - try again after sometime");
|