windmill-cli 1.393.0 → 1.393.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 +1 -1
- package/package.json +2 -2
- package/types/main.d.ts +1 -1
package/esm/main.js
CHANGED
|
@@ -31,7 +31,7 @@ export { flow, app, script, workspace, resource, user, variable, hub, folder, sc
|
|
|
31
31
|
// console.error(JSON.stringify(event.error, null, 4));
|
|
32
32
|
// }
|
|
33
33
|
// });
|
|
34
|
-
export const VERSION = "1.393.
|
|
34
|
+
export const VERSION = "1.393.1";
|
|
35
35
|
let command = new Command()
|
|
36
36
|
.name("wmill")
|
|
37
37
|
.action(() => log.info(`Welcome to Windmill CLI ${VERSION}. Use -h for help.`))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "windmill-cli",
|
|
3
|
-
"version": "1.393.
|
|
3
|
+
"version": "1.393.1",
|
|
4
4
|
"description": "CLI for Windmill",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"module": "./esm/main.js",
|
|
15
15
|
"types": "./types/main.d.ts",
|
|
16
16
|
"exports": {
|
|
17
|
-
"
|
|
17
|
+
".": {
|
|
18
18
|
"import": {
|
|
19
19
|
"types": "./types/main.d.ts",
|
|
20
20
|
"default": "./esm/main.js"
|
package/types/main.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ import dev from "./dev.js";
|
|
|
19
19
|
import { pull as hubPull } from "./hub.js";
|
|
20
20
|
import { pull, push } from "./sync.js";
|
|
21
21
|
export { flow, app, script, workspace, resource, user, variable, hub, folder, schedule, sync, instance, dev, lgeacyPush, legacyPull, hubPull, pull, push, };
|
|
22
|
-
export declare const VERSION = "1.393.
|
|
22
|
+
export declare const VERSION = "1.393.1";
|
|
23
23
|
declare let command: any;
|
|
24
24
|
export declare let showDiffs: boolean;
|
|
25
25
|
export default command;
|