@envpilot/cli 1.3.2 → 1.3.4
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ function initSentry() {
|
|
|
9
9
|
Sentry.init({
|
|
10
10
|
dsn,
|
|
11
11
|
environment: "cli",
|
|
12
|
-
release: true ? "1.3.
|
|
12
|
+
release: true ? "1.3.4" : "0.0.0",
|
|
13
13
|
// Free tier: disable performance monitoring
|
|
14
14
|
tracesSampleRate: 0,
|
|
15
15
|
beforeSend(event) {
|
|
@@ -3141,7 +3141,7 @@ var usageCommand = new Command11("usage").description("Show plan usage and limit
|
|
|
3141
3141
|
// src/lib/version-check.ts
|
|
3142
3142
|
import chalk13 from "chalk";
|
|
3143
3143
|
import Conf2 from "conf";
|
|
3144
|
-
var CLI_VERSION = "1.3.
|
|
3144
|
+
var CLI_VERSION = true ? "1.3.4" : "0.0.0";
|
|
3145
3145
|
var CHECK_INTERVAL = 60 * 60 * 1e3;
|
|
3146
3146
|
var _cache = null;
|
|
3147
3147
|
function getCache() {
|