@zuplo/cli 1.66.0 → 1.67.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.
Files changed (2) hide show
  1. package/dist/cli.js +3 -6
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -1,5 +1,5 @@
1
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]="a3130374-8b31-5e03-a50a-d2b87bc6e6f3")}catch(e){}}();
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]="5c52635e-d321-5a9c-8f94-d26b5d1b38fd")}catch(e){}}();
3
3
  import * as dotenv from "dotenv";
4
4
  dotenv.config();
5
5
  import * as Sentry from "@sentry/node";
@@ -20,7 +20,7 @@ import project from "./cmds/project/index.js";
20
20
  import test from "./cmds/test.js";
21
21
  import tunnel from "./cmds/tunnel/index.js";
22
22
  import variable from "./cmds/variable/index.js";
23
- import { MAX_WAIT_PENDING_TIME_MS, SENTRY_DSN } from "./common/constants.js";
23
+ import { SENTRY_DSN } from "./common/constants.js";
24
24
  import { logger } from "./common/logger.js";
25
25
  import { printCriticalFailureToConsoleAndExit } from "./common/output.js";
26
26
  const MIN_NODE_VERSION = "18.0.0";
@@ -55,9 +55,6 @@ if (gte(process.versions.node, MIN_NODE_VERSION)) {
55
55
  .strictCommands()
56
56
  .version(packageJson?.version)
57
57
  .help().argv;
58
- Sentry.close(MAX_WAIT_PENDING_TIME_MS).then(() => {
59
- process.exit(0);
60
- });
61
58
  }
62
59
  else {
63
60
  printCriticalFailureToConsoleAndExit(`The zup CLI requires at least node.js v${MIN_NODE_VERSION}. You are using v${process.versions.node}. Please update your version of node.js.
@@ -65,4 +62,4 @@ else {
65
62
  Consider using a Node.js version manager such as https://github.com/nvm-sh/nvm.`);
66
63
  }
67
64
  //# sourceMappingURL=cli.js.map
68
- //# debugId=a3130374-8b31-5e03-a50a-d2b87bc6e6f3
65
+ //# debugId=5c52635e-d321-5a9c-8f94-d26b5d1b38fd
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zuplo/cli",
3
- "version": "1.66.0",
3
+ "version": "1.67.0",
4
4
  "type": "module",
5
5
  "repository": "https://github.com/zuplo/cli",
6
6
  "author": "Zuplo, Inc.",