@zuplo/cli 1.104.0-temporary-fix-without-deno → 1.105.0
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/cli.js +6 -1
- package/dist/cmds/convert.js +4 -1
- package/dist/cmds/delete.js +4 -1
- package/dist/cmds/deploy.js +4 -1
- package/dist/cmds/dev.js +4 -1
- package/dist/cmds/editor.js +4 -1
- package/dist/cmds/link.js +4 -1
- package/dist/cmds/list.js +4 -1
- package/dist/cmds/login.js +4 -1
- package/dist/cmds/project/import-openapi.js +4 -1
- package/dist/cmds/project/index.js +4 -1
- package/dist/cmds/project/update.js +4 -1
- package/dist/cmds/test.js +4 -1
- package/dist/cmds/tunnel/create.js +4 -1
- package/dist/cmds/tunnel/delete.js +4 -1
- package/dist/cmds/tunnel/describe.js +4 -1
- package/dist/cmds/tunnel/index.js +4 -1
- package/dist/cmds/tunnel/list.js +4 -1
- package/dist/cmds/tunnel/rotate-token.js +4 -1
- package/dist/cmds/tunnel/services/describe.js +4 -1
- package/dist/cmds/tunnel/services/index.js +4 -1
- package/dist/cmds/tunnel/services/update.js +4 -1
- package/dist/cmds/variable/create.js +4 -1
- package/dist/cmds/variable/index.js +4 -1
- package/dist/cmds/variable/update.js +4 -1
- package/dist/common/alias.js +4 -1
- package/dist/common/analytics/lib.js +4 -1
- package/dist/common/api/lib.js +4 -1
- package/dist/common/constants.js +4 -1
- package/dist/common/deno-utils/locator.js +4 -1
- package/dist/common/handler.js +4 -1
- package/dist/common/logger.js +4 -1
- package/dist/common/machine-id/lib.js +4 -1
- package/dist/common/middleware/user-configuration.js +4 -1
- package/dist/common/middleware/user-identification.js +4 -1
- package/dist/common/models.js +4 -1
- package/dist/common/output.js +4 -1
- package/dist/common/settings.js +4 -1
- package/dist/common/upgraders/lib.js +4 -1
- package/dist/common/upgraders/package-json-upgrader.js +4 -1
- package/dist/common/upgraders/vscode-settings-json-upgrader.js +4 -1
- package/dist/common/validators/file-system-validator.js +4 -1
- package/dist/common/validators/lib.js +4 -1
- package/dist/common/validators/login-state-validator.js +4 -1
- package/dist/common/validators/project-name-validator.js +4 -1
- package/dist/common/xdg/lib.js +4 -1
- package/dist/convert/engine.js +4 -1
- package/dist/convert/handler.js +4 -1
- package/dist/convert/routes.generated.js +4 -1
- package/dist/delete/handler.js +4 -1
- package/dist/delete/poll-deployment.js +4 -1
- package/dist/deploy/archive.js +4 -1
- package/dist/deploy/file-upload.js +4 -1
- package/dist/deploy/handler.js +4 -1
- package/dist/deploy/poll-deployment.js +4 -1
- package/dist/dev/handler.js +4 -1
- package/dist/editor/assets/index-03352ce7.js +4 -0
- package/dist/editor/handler.js +4 -1
- package/dist/editor/server/cors-plugin.js +4 -1
- package/dist/editor/server/server.js +4 -1
- package/dist/editor/server/xfs.js +4 -1
- package/dist/link/handler.js +4 -1
- package/dist/link/populate.js +4 -1
- package/dist/list/handler.js +4 -1
- package/dist/login/handler.js +4 -1
- package/dist/login/server.js +4 -1
- package/dist/project/import-openapi/handler.js +4 -1
- package/dist/project/import-openapi/interfaces.js +4 -1
- package/dist/project/import-openapi/utils.js +4 -1
- package/dist/project/update/handler.js +4 -1
- package/dist/test/esbuild-config.js +4 -1
- package/dist/test/esbuild-plugins/deno-test-prep-plugin.js +4 -1
- package/dist/test/handler.js +4 -1
- package/dist/test/invoke-test.js +4 -1
- package/dist/tunnel/create/handler.js +4 -1
- package/dist/tunnel/delete/handler.js +4 -1
- package/dist/tunnel/delete/poll-teardown-operation.js +4 -1
- package/dist/tunnel/describe/handler.js +4 -1
- package/dist/tunnel/list/handler.js +4 -1
- package/dist/tunnel/models.js +4 -1
- package/dist/tunnel/rotate-token/handler.js +4 -1
- package/dist/tunnel/services/describe/handler.js +4 -1
- package/dist/tunnel/services/update/handler.js +4 -1
- package/dist/tunnel/services/update/poll-provisioning-operations.js +4 -1
- package/dist/variable/create/handler.js +4 -1
- package/dist/variable/models.js +4 -1
- package/dist/variable/update/handler.js +4 -1
- package/package.json +2 -1
package/dist/cli.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="13f2d28d-a993-57e1-bc2e-1821b26c7cff")}catch(e){}}();
|
|
1
3
|
import * as dotenv from "dotenv";
|
|
2
4
|
dotenv.config();
|
|
3
5
|
import * as Sentry from "@sentry/node";
|
|
@@ -9,6 +11,7 @@ import yargs from "yargs/yargs";
|
|
|
9
11
|
import convert from "./cmds/convert.js";
|
|
10
12
|
import deleteZup from "./cmds/delete.js";
|
|
11
13
|
import deploy from "./cmds/deploy.js";
|
|
14
|
+
import dev from "./cmds/dev.js";
|
|
12
15
|
import editor from "./cmds/editor.js";
|
|
13
16
|
import link from "./cmds/link.js";
|
|
14
17
|
import list from "./cmds/list.js";
|
|
@@ -40,6 +43,7 @@ if (gte(process.versions.node, MIN_NODE_VERSION)) {
|
|
|
40
43
|
.command(convert)
|
|
41
44
|
.command(deleteZup)
|
|
42
45
|
.command(deploy)
|
|
46
|
+
.command(dev)
|
|
43
47
|
.command(editor)
|
|
44
48
|
.command(list)
|
|
45
49
|
.command(link)
|
|
@@ -75,4 +79,5 @@ else {
|
|
|
75
79
|
|
|
76
80
|
Consider using a Node.js version manager such as https://github.com/nvm-sh/nvm.`);
|
|
77
81
|
}
|
|
78
|
-
//# sourceMappingURL=cli.js.map
|
|
82
|
+
//# sourceMappingURL=cli.js.map
|
|
83
|
+
//# debugId=13f2d28d-a993-57e1-bc2e-1821b26c7cff
|
package/dist/cmds/convert.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="7b30a4a9-a2c3-5f25-af13-bb4637e4cbbe")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
2
4
|
import { identify } from "../common/middleware/user-identification.js";
|
|
3
5
|
import setBlocking from "../common/output.js";
|
|
@@ -21,4 +23,5 @@ export default {
|
|
|
21
23
|
await convert(argv);
|
|
22
24
|
},
|
|
23
25
|
};
|
|
24
|
-
//# sourceMappingURL=convert.js.map
|
|
26
|
+
//# sourceMappingURL=convert.js.map
|
|
27
|
+
//# debugId=7b30a4a9-a2c3-5f25-af13-bb4637e4cbbe
|
package/dist/cmds/delete.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="aaafa692-9a45-5551-b265-0a92f13b3846")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
2
4
|
import { configure } from "../common/middleware/user-configuration.js";
|
|
3
5
|
import { identify } from "../common/middleware/user-identification.js";
|
|
@@ -39,4 +41,5 @@ export default {
|
|
|
39
41
|
await deleteZup(argv);
|
|
40
42
|
},
|
|
41
43
|
};
|
|
42
|
-
//# sourceMappingURL=delete.js.map
|
|
44
|
+
//# sourceMappingURL=delete.js.map
|
|
45
|
+
//# debugId=aaafa692-9a45-5551-b265-0a92f13b3846
|
package/dist/cmds/deploy.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="340e4aed-225d-5578-a3af-822eb8c7f33b")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
2
4
|
import { configure } from "../common/middleware/user-configuration.js";
|
|
3
5
|
import { identify } from "../common/middleware/user-identification.js";
|
|
@@ -48,4 +50,5 @@ export default {
|
|
|
48
50
|
await deploy(argv);
|
|
49
51
|
},
|
|
50
52
|
};
|
|
51
|
-
//# sourceMappingURL=deploy.js.map
|
|
53
|
+
//# sourceMappingURL=deploy.js.map
|
|
54
|
+
//# debugId=340e4aed-225d-5578-a3af-822eb8c7f33b
|
package/dist/cmds/dev.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="d957865b-71c7-52e9-907e-8620261193ad")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
2
4
|
import { identify } from "../common/middleware/user-identification.js";
|
|
3
5
|
import setBlocking from "../common/output.js";
|
|
@@ -41,4 +43,5 @@ export default {
|
|
|
41
43
|
await dev(argv);
|
|
42
44
|
},
|
|
43
45
|
};
|
|
44
|
-
//# sourceMappingURL=dev.js.map
|
|
46
|
+
//# sourceMappingURL=dev.js.map
|
|
47
|
+
//# debugId=d957865b-71c7-52e9-907e-8620261193ad
|
package/dist/cmds/editor.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="39695608-20e6-59bb-8e32-8b6037d42575")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
2
4
|
import { identify } from "../common/middleware/user-identification.js";
|
|
3
5
|
import setBlocking from "../common/output.js";
|
|
@@ -31,4 +33,5 @@ export default {
|
|
|
31
33
|
await editor(argv);
|
|
32
34
|
},
|
|
33
35
|
};
|
|
34
|
-
//# sourceMappingURL=editor.js.map
|
|
36
|
+
//# sourceMappingURL=editor.js.map
|
|
37
|
+
//# debugId=39695608-20e6-59bb-8e32-8b6037d42575
|
package/dist/cmds/link.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="c2365925-f632-55ec-9b9b-85ac10bfc5ab")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
2
4
|
import { identify } from "../common/middleware/user-identification.js";
|
|
3
5
|
import setBlocking from "../common/output.js";
|
|
@@ -26,4 +28,5 @@ export default {
|
|
|
26
28
|
await link(argv);
|
|
27
29
|
},
|
|
28
30
|
};
|
|
29
|
-
//# sourceMappingURL=link.js.map
|
|
31
|
+
//# sourceMappingURL=link.js.map
|
|
32
|
+
//# debugId=c2365925-f632-55ec-9b9b-85ac10bfc5ab
|
package/dist/cmds/list.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="1365eaa2-6dd2-520c-9675-2c2c00576f66")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
2
4
|
import { configure } from "../common/middleware/user-configuration.js";
|
|
3
5
|
import { identify } from "../common/middleware/user-identification.js";
|
|
@@ -30,4 +32,5 @@ export default {
|
|
|
30
32
|
await list(argv);
|
|
31
33
|
},
|
|
32
34
|
};
|
|
33
|
-
//# sourceMappingURL=list.js.map
|
|
35
|
+
//# sourceMappingURL=list.js.map
|
|
36
|
+
//# debugId=1365eaa2-6dd2-520c-9675-2c2c00576f66
|
package/dist/cmds/login.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="06344ac3-9b00-5aab-b199-3e6faa6f3a3d")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
2
4
|
import { identify } from "../common/middleware/user-identification.js";
|
|
3
5
|
import setBlocking from "../common/output.js";
|
|
@@ -18,4 +20,5 @@ export default {
|
|
|
18
20
|
await login(argv);
|
|
19
21
|
},
|
|
20
22
|
};
|
|
21
|
-
//# sourceMappingURL=login.js.map
|
|
23
|
+
//# sourceMappingURL=login.js.map
|
|
24
|
+
//# debugId=06344ac3-9b00-5aab-b199-3e6faa6f3a3d
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="91ee157c-141d-5381-a1b8-ef9f2f5625d8")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
2
4
|
import setBlocking from "../../common/output.js";
|
|
3
5
|
import { ZuploProjectValidator } from "../../common/validators/file-system-validator.js";
|
|
@@ -40,4 +42,5 @@ export default {
|
|
|
40
42
|
await importOpenApi(argv);
|
|
41
43
|
},
|
|
42
44
|
};
|
|
43
|
-
//# sourceMappingURL=import-openapi.js.map
|
|
45
|
+
//# sourceMappingURL=import-openapi.js.map
|
|
46
|
+
//# debugId=91ee157c-141d-5381-a1b8-ef9f2f5625d8
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="e46201b0-8148-5c25-a7c1-7ae7cdc49cbb")}catch(e){}}();
|
|
1
3
|
import { groupHandler } from "../../common/handler.js";
|
|
2
4
|
import importOpenApi from "./import-openapi.js";
|
|
3
5
|
import update from "./update.js";
|
|
@@ -10,4 +12,5 @@ const commands = {
|
|
|
10
12
|
handler: groupHandler,
|
|
11
13
|
};
|
|
12
14
|
export default commands;
|
|
13
|
-
//# sourceMappingURL=index.js.map
|
|
15
|
+
//# sourceMappingURL=index.js.map
|
|
16
|
+
//# debugId=e46201b0-8148-5c25-a7c1-7ae7cdc49cbb
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="af8d9ac0-7207-5a52-ba69-81b7b44b6d4a")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
2
4
|
import { identify } from "../../common/middleware/user-identification.js";
|
|
3
5
|
import setBlocking from "../../common/output.js";
|
|
@@ -26,4 +28,5 @@ export default {
|
|
|
26
28
|
await update(argv);
|
|
27
29
|
},
|
|
28
30
|
};
|
|
29
|
-
//# sourceMappingURL=update.js.map
|
|
31
|
+
//# sourceMappingURL=update.js.map
|
|
32
|
+
//# debugId=af8d9ac0-7207-5a52-ba69-81b7b44b6d4a
|
package/dist/cmds/test.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="bf382d7f-824b-52f3-8b84-d598a396e061")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
2
4
|
import { identify } from "../common/middleware/user-identification.js";
|
|
3
5
|
import setBlocking from "../common/output.js";
|
|
@@ -34,4 +36,5 @@ export default {
|
|
|
34
36
|
await test(argv);
|
|
35
37
|
},
|
|
36
38
|
};
|
|
37
|
-
//# sourceMappingURL=test.js.map
|
|
39
|
+
//# sourceMappingURL=test.js.map
|
|
40
|
+
//# debugId=bf382d7f-824b-52f3-8b84-d598a396e061
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="1c31d9af-6d6d-5485-b1c5-216cf4807329")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
2
4
|
import { configure } from "../../common/middleware/user-configuration.js";
|
|
3
5
|
import { identify } from "../../common/middleware/user-identification.js";
|
|
@@ -25,4 +27,5 @@ export default {
|
|
|
25
27
|
await create(argv);
|
|
26
28
|
},
|
|
27
29
|
};
|
|
28
|
-
//# sourceMappingURL=create.js.map
|
|
30
|
+
//# sourceMappingURL=create.js.map
|
|
31
|
+
//# debugId=1c31d9af-6d6d-5485-b1c5-216cf4807329
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="bcde239d-9bb4-5375-90f5-e1f896ce6cec")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
2
4
|
import { configure } from "../../common/middleware/user-configuration.js";
|
|
3
5
|
import { identify } from "../../common/middleware/user-identification.js";
|
|
@@ -21,4 +23,5 @@ export default {
|
|
|
21
23
|
await deleteTunnel(argv);
|
|
22
24
|
},
|
|
23
25
|
};
|
|
24
|
-
//# sourceMappingURL=delete.js.map
|
|
26
|
+
//# sourceMappingURL=delete.js.map
|
|
27
|
+
//# debugId=bcde239d-9bb4-5375-90f5-e1f896ce6cec
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="cf3929b3-3c67-5b2d-85a4-2bf14bec6120")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
2
4
|
import { configure } from "../../common/middleware/user-configuration.js";
|
|
3
5
|
import { identify } from "../../common/middleware/user-identification.js";
|
|
@@ -25,4 +27,5 @@ export default {
|
|
|
25
27
|
await describe(argv);
|
|
26
28
|
},
|
|
27
29
|
};
|
|
28
|
-
//# sourceMappingURL=describe.js.map
|
|
30
|
+
//# sourceMappingURL=describe.js.map
|
|
31
|
+
//# debugId=cf3929b3-3c67-5b2d-85a4-2bf14bec6120
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="ee11bf54-df7f-5073-8ada-69c1811d71a8")}catch(e){}}();
|
|
1
3
|
import { groupHandler } from "../../common/handler.js";
|
|
2
4
|
import create from "./create.js";
|
|
3
5
|
import deleteTunnel from "./delete.js";
|
|
@@ -21,4 +23,5 @@ const commands = {
|
|
|
21
23
|
handler: groupHandler,
|
|
22
24
|
};
|
|
23
25
|
export default commands;
|
|
24
|
-
//# sourceMappingURL=index.js.map
|
|
26
|
+
//# sourceMappingURL=index.js.map
|
|
27
|
+
//# debugId=ee11bf54-df7f-5073-8ada-69c1811d71a8
|
package/dist/cmds/tunnel/list.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="e413402b-feb6-5eb5-809e-1bcb32d5fa96")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
2
4
|
import { configure } from "../../common/middleware/user-configuration.js";
|
|
3
5
|
import { identify } from "../../common/middleware/user-identification.js";
|
|
@@ -21,4 +23,5 @@ export default {
|
|
|
21
23
|
await list(argv);
|
|
22
24
|
},
|
|
23
25
|
};
|
|
24
|
-
//# sourceMappingURL=list.js.map
|
|
26
|
+
//# sourceMappingURL=list.js.map
|
|
27
|
+
//# debugId=e413402b-feb6-5eb5-809e-1bcb32d5fa96
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="10f31d26-d28f-5c34-ba4c-b0eb7768a056")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
2
4
|
import { configure } from "../../common/middleware/user-configuration.js";
|
|
3
5
|
import { identify } from "../../common/middleware/user-identification.js";
|
|
@@ -25,4 +27,5 @@ export default {
|
|
|
25
27
|
await rotateToken(argv);
|
|
26
28
|
},
|
|
27
29
|
};
|
|
28
|
-
//# sourceMappingURL=rotate-token.js.map
|
|
30
|
+
//# sourceMappingURL=rotate-token.js.map
|
|
31
|
+
//# debugId=10f31d26-d28f-5c34-ba4c-b0eb7768a056
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="ab681ce0-b525-5358-a016-674e43604c4f")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../../../common/analytics/lib.js";
|
|
2
4
|
import { configure } from "../../../common/middleware/user-configuration.js";
|
|
3
5
|
import { identify } from "../../../common/middleware/user-identification.js";
|
|
@@ -25,4 +27,5 @@ export default {
|
|
|
25
27
|
await describe(argv);
|
|
26
28
|
},
|
|
27
29
|
};
|
|
28
|
-
//# sourceMappingURL=describe.js.map
|
|
30
|
+
//# sourceMappingURL=describe.js.map
|
|
31
|
+
//# debugId=ab681ce0-b525-5358-a016-674e43604c4f
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="206665c6-464b-559b-b66d-a25c3f52eaf9")}catch(e){}}();
|
|
1
3
|
import { groupHandler } from "../../../common/handler.js";
|
|
2
4
|
import describe from "./describe.js";
|
|
3
5
|
import update from "./update.js";
|
|
@@ -10,4 +12,5 @@ const commands = {
|
|
|
10
12
|
handler: groupHandler,
|
|
11
13
|
};
|
|
12
14
|
export default commands;
|
|
13
|
-
//# sourceMappingURL=index.js.map
|
|
15
|
+
//# sourceMappingURL=index.js.map
|
|
16
|
+
//# debugId=206665c6-464b-559b-b66d-a25c3f52eaf9
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="0b1a2856-92b8-5413-926a-b6f941b3868e")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../../../common/analytics/lib.js";
|
|
2
4
|
import { configure } from "../../../common/middleware/user-configuration.js";
|
|
3
5
|
import { identify } from "../../../common/middleware/user-identification.js";
|
|
@@ -29,4 +31,5 @@ export default {
|
|
|
29
31
|
await updateServices(argv);
|
|
30
32
|
},
|
|
31
33
|
};
|
|
32
|
-
//# sourceMappingURL=update.js.map
|
|
34
|
+
//# sourceMappingURL=update.js.map
|
|
35
|
+
//# debugId=0b1a2856-92b8-5413-926a-b6f941b3868e
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="43cfc43f-cef9-5941-b178-06788ef84ab6")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
2
4
|
import { configure } from "../../common/middleware/user-configuration.js";
|
|
3
5
|
import { identify } from "../../common/middleware/user-identification.js";
|
|
@@ -46,4 +48,5 @@ export default {
|
|
|
46
48
|
await create(argv);
|
|
47
49
|
},
|
|
48
50
|
};
|
|
49
|
-
//# sourceMappingURL=create.js.map
|
|
51
|
+
//# sourceMappingURL=create.js.map
|
|
52
|
+
//# debugId=43cfc43f-cef9-5941-b178-06788ef84ab6
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="f876ecfa-9198-5520-821b-2111cd444ba8")}catch(e){}}();
|
|
1
3
|
import { groupHandler } from "../../common/handler.js";
|
|
2
4
|
import create from "./create.js";
|
|
3
5
|
import update from "./update.js";
|
|
@@ -10,4 +12,5 @@ const commands = {
|
|
|
10
12
|
handler: groupHandler,
|
|
11
13
|
};
|
|
12
14
|
export default commands;
|
|
13
|
-
//# sourceMappingURL=index.js.map
|
|
15
|
+
//# sourceMappingURL=index.js.map
|
|
16
|
+
//# debugId=f876ecfa-9198-5520-821b-2111cd444ba8
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="fcc8e060-67f9-5074-a73f-5b458628939c")}catch(e){}}();
|
|
1
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
2
4
|
import { configure } from "../../common/middleware/user-configuration.js";
|
|
3
5
|
import { identify } from "../../common/middleware/user-identification.js";
|
|
@@ -37,4 +39,5 @@ export default {
|
|
|
37
39
|
await update(argv);
|
|
38
40
|
},
|
|
39
41
|
};
|
|
40
|
-
//# sourceMappingURL=update.js.map
|
|
42
|
+
//# sourceMappingURL=update.js.map
|
|
43
|
+
//# debugId=fcc8e060-67f9-5074-a73f-5b458628939c
|
package/dist/common/alias.js
CHANGED
|
@@ -1,2 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="34d2de6c-e216-575d-9a4e-e4b42a4e6773")}catch(e){}}();
|
|
1
3
|
export {};
|
|
2
|
-
//# sourceMappingURL=alias.js.map
|
|
4
|
+
//# sourceMappingURL=alias.js.map
|
|
5
|
+
//# debugId=34d2de6c-e216-575d-9a4e-e4b42a4e6773
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="7964f533-4c45-5bc8-929e-803354f7501e")}catch(e){}}();
|
|
1
3
|
import { defaultIntegrations } from "@sentry/node";
|
|
2
4
|
import { PostHog } from "posthog-node";
|
|
3
5
|
import { POST_HOG_CAPTURE_KEY, ZUPLO_USER_ID_ARGV_KEY } from "../constants.js";
|
|
@@ -51,4 +53,5 @@ export async function captureEvent({ argv, event, properties, groups, sendFeatur
|
|
|
51
53
|
export async function shutdownAnalytics() {
|
|
52
54
|
return _postHog?.shutdownAsync();
|
|
53
55
|
}
|
|
54
|
-
//# sourceMappingURL=lib.js.map
|
|
56
|
+
//# sourceMappingURL=lib.js.map
|
|
57
|
+
//# debugId=7964f533-4c45-5bc8-929e-803354f7501e
|
package/dist/common/api/lib.js
CHANGED
|
@@ -1,2 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="51fa863f-e84d-5faa-922f-e762f03ef49f")}catch(e){}}();
|
|
1
3
|
export {};
|
|
2
|
-
//# sourceMappingURL=lib.js.map
|
|
4
|
+
//# sourceMappingURL=lib.js.map
|
|
5
|
+
//# debugId=51fa863f-e84d-5faa-922f-e762f03ef49f
|
package/dist/common/constants.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="8f9176c4-bdd2-5546-8161-2df78f8c8d2d")}catch(e){}}();
|
|
1
3
|
export const ZUPLO_PREFERRED_JSON_FILE = "zuplo.jsonc";
|
|
2
4
|
export const ZUPLO_FALLBACK_JSON_FILE = "zuplo.json";
|
|
3
5
|
export const ZUPLO_CLI_XDG_FOLDER_NAME = "zup";
|
|
@@ -10,4 +12,5 @@ export const TEST_OUT_FOLDER = ".zuplo/__tests__";
|
|
|
10
12
|
export const SENTRY_DSN = "https://28220fd3185a1281daff09ade2114dca@o1036703.ingest.sentry.io/4505880249040896";
|
|
11
13
|
export const MAX_WAIT_PENDING_TIME_MS = 1000;
|
|
12
14
|
export const POST_HOG_CAPTURE_KEY = "phc_LDSwSTOvIjiDDZql2g54Q7xEXoQ0EN9RMYb3STbdz1V";
|
|
13
|
-
//# sourceMappingURL=constants.js.map
|
|
15
|
+
//# sourceMappingURL=constants.js.map
|
|
16
|
+
//# debugId=8f9176c4-bdd2-5546-8161-2df78f8c8d2d
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="0ab2face-18bc-5321-bfbd-2b6608d25782")}catch(e){}}();
|
|
1
3
|
import { existsSync } from "node:fs";
|
|
2
4
|
import { dirname, resolve } from "node:path";
|
|
3
5
|
import { fileURLToPath } from "node:url";
|
|
@@ -23,4 +25,5 @@ export async function locateDeno(dir) {
|
|
|
23
25
|
}
|
|
24
26
|
return locateDeno(dirname(dir));
|
|
25
27
|
}
|
|
26
|
-
//# sourceMappingURL=locator.js.map
|
|
28
|
+
//# sourceMappingURL=locator.js.map
|
|
29
|
+
//# debugId=0ab2face-18bc-5321-bfbd-2b6608d25782
|
package/dist/common/handler.js
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="383a288d-5e66-57b8-94f9-47677e2041b7")}catch(e){}}();
|
|
1
3
|
export function groupHandler() {
|
|
2
4
|
console.log("Run with --help to see available commands");
|
|
3
5
|
}
|
|
4
|
-
//# sourceMappingURL=handler.js.map
|
|
6
|
+
//# sourceMappingURL=handler.js.map
|
|
7
|
+
//# debugId=383a288d-5e66-57b8-94f9-47677e2041b7
|
package/dist/common/logger.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="933da865-f680-55cc-a710-065ace7ed925")}catch(e){}}();
|
|
1
3
|
import * as Pino from "pino";
|
|
2
4
|
export const logger = Pino.pino({
|
|
3
5
|
level: process.env.LOG_LEVEL || "info",
|
|
@@ -11,4 +13,5 @@ export const logger = Pino.pino({
|
|
|
11
13
|
],
|
|
12
14
|
},
|
|
13
15
|
});
|
|
14
|
-
//# sourceMappingURL=logger.js.map
|
|
16
|
+
//# sourceMappingURL=logger.js.map
|
|
17
|
+
//# debugId=933da865-f680-55cc-a710-065ace7ed925
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="d710f777-d1e4-57a0-aaa8-2fb4bdadb098")}catch(e){}}();
|
|
1
3
|
import { execSync } from "node:child_process";
|
|
2
4
|
import { createHash } from "node:crypto";
|
|
3
5
|
const win32RegBinPath = {
|
|
@@ -62,4 +64,5 @@ export function machineId() {
|
|
|
62
64
|
return "e16fc483-5593-4d71-b485-a6533693da9b";
|
|
63
65
|
}
|
|
64
66
|
}
|
|
65
|
-
//# sourceMappingURL=lib.js.map
|
|
67
|
+
//# sourceMappingURL=lib.js.map
|
|
68
|
+
//# debugId=d710f777-d1e4-57a0-aaa8-2fb4bdadb098
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="9967c3d0-3ded-5c50-9e45-2f7590c72bfa")}catch(e){}}();
|
|
1
3
|
import { parse } from "jsonc-parser";
|
|
2
4
|
import { existsSync } from "node:fs";
|
|
3
5
|
import { readFile } from "node:fs/promises";
|
|
@@ -56,4 +58,5 @@ const omitNull = (obj) => {
|
|
|
56
58
|
.forEach((k) => delete obj[k]);
|
|
57
59
|
return obj;
|
|
58
60
|
};
|
|
59
|
-
//# sourceMappingURL=user-configuration.js.map
|
|
61
|
+
//# sourceMappingURL=user-configuration.js.map
|
|
62
|
+
//# debugId=9967c3d0-3ded-5c50-9e45-2f7590c72bfa
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="8688bc9e-df54-5ca7-a1a2-768d83465e92")}catch(e){}}();
|
|
1
3
|
import * as Sentry from "@sentry/node";
|
|
2
4
|
import * as jose from "jose";
|
|
3
5
|
import { readFile } from "node:fs/promises";
|
|
@@ -32,4 +34,5 @@ export async function identify(argv) {
|
|
|
32
34
|
argv["zuplo-user-id"] = userId;
|
|
33
35
|
}
|
|
34
36
|
}
|
|
35
|
-
//# sourceMappingURL=user-identification.js.map
|
|
37
|
+
//# sourceMappingURL=user-identification.js.map
|
|
38
|
+
//# debugId=8688bc9e-df54-5ca7-a1a2-768d83465e92
|
package/dist/common/models.js
CHANGED
|
@@ -1,2 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="44a18960-70ce-57f9-b9cf-5ccd5bb951e5")}catch(e){}}();
|
|
1
3
|
export {};
|
|
2
|
-
//# sourceMappingURL=models.js.map
|
|
4
|
+
//# sourceMappingURL=models.js.map
|
|
5
|
+
//# debugId=44a18960-70ce-57f9-b9cf-5ccd5bb951e5
|
package/dist/common/output.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="2df63d73-274e-5ba8-9b31-5a7a98c11051")}catch(e){}}();
|
|
1
3
|
import * as Sentry from "@sentry/node";
|
|
2
4
|
import chalk from "chalk";
|
|
3
5
|
import { MAX_WAIT_PENDING_TIME_MS } from "./constants.js";
|
|
@@ -48,4 +50,5 @@ export function textOrJson(text) {
|
|
|
48
50
|
return text;
|
|
49
51
|
}
|
|
50
52
|
}
|
|
51
|
-
//# sourceMappingURL=output.js.map
|
|
53
|
+
//# sourceMappingURL=output.js.map
|
|
54
|
+
//# debugId=2df63d73-274e-5ba8-9b31-5a7a98c11051
|
package/dist/common/settings.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="ac6e27ab-3838-58fa-ab3b-2509c8786362")}catch(e){}}();
|
|
1
3
|
class Settings {
|
|
2
4
|
get ZUPLO_DEVELOPER_API_ENDPOINT() {
|
|
3
5
|
return process.env.ZUPLO_DEVELOPER_API_ENDPOINT ?? "https://dev.zuplo.com";
|
|
@@ -20,4 +22,5 @@ class Settings {
|
|
|
20
22
|
}
|
|
21
23
|
const settings = new Settings();
|
|
22
24
|
export default settings;
|
|
23
|
-
//# sourceMappingURL=settings.js.map
|
|
25
|
+
//# sourceMappingURL=settings.js.map
|
|
26
|
+
//# debugId=ac6e27ab-3838-58fa-ab3b-2509c8786362
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="9e6b3423-ff77-53d4-934a-28b692b323c3")}catch(e){}}();
|
|
1
3
|
export class StandardUpgrader {
|
|
2
4
|
normalizedDir;
|
|
3
5
|
constructor(normalizedDir) {
|
|
@@ -10,4 +12,5 @@ export class VsCodeFolderMissing extends Error {
|
|
|
10
12
|
Object.setPrototypeOf(this, VsCodeFolderMissing.prototype);
|
|
11
13
|
}
|
|
12
14
|
}
|
|
13
|
-
//# sourceMappingURL=lib.js.map
|
|
15
|
+
//# sourceMappingURL=lib.js.map
|
|
16
|
+
//# debugId=9e6b3423-ff77-53d4-934a-28b692b323c3
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="9679ce39-91f8-5b74-ad15-9a9a9427e410")}catch(e){}}();
|
|
1
3
|
import { readFile, writeFile } from "node:fs/promises";
|
|
2
4
|
import { join } from "node:path";
|
|
3
5
|
import prettier from "prettier";
|
|
@@ -61,4 +63,5 @@ export class PackageJsonUpgrader extends StandardUpgrader {
|
|
|
61
63
|
await writeFile(packageJsonFile, formatted);
|
|
62
64
|
}
|
|
63
65
|
}
|
|
64
|
-
//# sourceMappingURL=package-json-upgrader.js.map
|
|
66
|
+
//# sourceMappingURL=package-json-upgrader.js.map
|
|
67
|
+
//# debugId=9679ce39-91f8-5b74-ad15-9a9a9427e410
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="f25ccd6f-0eb7-5cb5-979a-2e2c886e52a4")}catch(e){}}();
|
|
1
3
|
import { parse } from "jsonc-parser";
|
|
2
4
|
import { existsSync } from "node:fs";
|
|
3
5
|
import { readFile, writeFile } from "node:fs/promises";
|
|
@@ -90,4 +92,5 @@ export class VsCodeSettingsJsonUpgrader extends StandardUpgrader {
|
|
|
90
92
|
}
|
|
91
93
|
}
|
|
92
94
|
}
|
|
93
|
-
//# sourceMappingURL=vscode-settings-json-upgrader.js.map
|
|
95
|
+
//# sourceMappingURL=vscode-settings-json-upgrader.js.map
|
|
96
|
+
//# debugId=f25ccd6f-0eb7-5cb5-979a-2e2c886e52a4
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="5d556b94-af4a-5b17-96b6-e1bca9a4704a")}catch(e){}}();
|
|
1
3
|
import fg from "fast-glob";
|
|
2
4
|
import { existsSync, readdirSync } from "node:fs";
|
|
3
5
|
import { join } from "node:path";
|
|
@@ -160,4 +162,5 @@ export class ZuploProjectHasTestsValidator {
|
|
|
160
162
|
export const validDeployDirectoryValidator = new CompositeValidator(new ZuploProjectValidator(), new GitVersionControlValidator(), new GitCommitValidator(), new GitBranchValidator(), new GitRemoteValidator(), new ProjectIsSetValidator());
|
|
161
163
|
export const validTestDirectoryValidator = new CompositeValidator(new ZuploProjectValidator(), new ZuploProjectHasTestsValidator());
|
|
162
164
|
export const validLinkDirectoryValidator = new CompositeValidator(new ZuploProjectValidator(), new UserIsLoggedInValidator());
|
|
163
|
-
//# sourceMappingURL=file-system-validator.js.map
|
|
165
|
+
//# sourceMappingURL=file-system-validator.js.map
|
|
166
|
+
//# debugId=5d556b94-af4a-5b17-96b6-e1bca9a4704a
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="e95e31c7-891b-5e2b-b79d-45d44fe02643")}catch(e){}}();
|
|
1
3
|
export class CompositeValidator {
|
|
2
4
|
validators = new Array();
|
|
3
5
|
constructor(...validators) {
|
|
@@ -28,4 +30,5 @@ export class YargsChecker {
|
|
|
28
30
|
}
|
|
29
31
|
}
|
|
30
32
|
}
|
|
31
|
-
//# sourceMappingURL=lib.js.map
|
|
33
|
+
//# sourceMappingURL=lib.js.map
|
|
34
|
+
//# debugId=e95e31c7-891b-5e2b-b79d-45d44fe02643
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="ad5e9c30-9045-5fa4-b776-601c8f4c0a0a")}catch(e){}}();
|
|
1
3
|
import { existsSync } from "node:fs";
|
|
2
4
|
import { readFile } from "node:fs/promises";
|
|
3
5
|
import { join } from "node:path";
|
|
@@ -33,4 +35,5 @@ export class UserIsLoggedInValidator {
|
|
|
33
35
|
return { ok: true };
|
|
34
36
|
}
|
|
35
37
|
}
|
|
36
|
-
//# sourceMappingURL=login-state-validator.js.map
|
|
38
|
+
//# sourceMappingURL=login-state-validator.js.map
|
|
39
|
+
//# debugId=ad5e9c30-9045-5fa4-b776-601c8f4c0a0a
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="920ca05b-f900-53ea-9fad-f5ff80a0c56c")}catch(e){}}();
|
|
1
3
|
export class ProjectIsNotSet extends Error {
|
|
2
4
|
constructor() {
|
|
3
5
|
super(`Missing project name. This command requires a project to be specified. Either specify it using --project or set it in zuplo.jsonc.
|
|
@@ -27,4 +29,5 @@ export class ProjectIsSetValidator {
|
|
|
27
29
|
}
|
|
28
30
|
}
|
|
29
31
|
}
|
|
30
|
-
//# sourceMappingURL=project-name-validator.js.map
|
|
32
|
+
//# sourceMappingURL=project-name-validator.js.map
|
|
33
|
+
//# debugId=920ca05b-f900-53ea-9fad-f5ff80a0c56c
|