@sentry/cli 2.2.0 → 2.4.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/checksums.txt +9 -9
- package/js/index.d.ts +5 -5
- package/package.json +1 -1
- package/scripts/install.js +3 -2
package/checksums.txt
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
sentry-cli-Darwin-arm64=
|
|
2
|
-
sentry-cli-Darwin-universal=
|
|
3
|
-
sentry-cli-Darwin-x86_64=
|
|
4
|
-
sentry-cli-Linux-aarch64=
|
|
5
|
-
sentry-cli-Linux-armv7=
|
|
6
|
-
sentry-cli-Linux-i686=
|
|
7
|
-
sentry-cli-Linux-x86_64=
|
|
8
|
-
sentry-cli-Windows-i686.exe=
|
|
9
|
-
sentry-cli-Windows-x86_64.exe=
|
|
1
|
+
sentry-cli-Darwin-arm64=7bd5c17f417afe9e470116cc79c49df3a6f404b52f51fc52d9002d8a9ecccf96
|
|
2
|
+
sentry-cli-Darwin-universal=f7cd6887521f0a1c91fb8358cbc1a8077b46294f92818627499c8ca73ed0a082
|
|
3
|
+
sentry-cli-Darwin-x86_64=b355404659e770d7f34b528a47d3cf280d7c9a1608f6e31f9fd6747f230957a8
|
|
4
|
+
sentry-cli-Linux-aarch64=9b5a1a37ea70f35fba96dd6ce73c28edec91dcabc9e091da0589b185f536d57e
|
|
5
|
+
sentry-cli-Linux-armv7=36dbae09800d7abab953945d969ccefda23d73a1c03a95501831582e5bcaaa14
|
|
6
|
+
sentry-cli-Linux-i686=ea2601cdf5eda821388c9445b945903201f63d6468dad620d9039a8c40c38e5a
|
|
7
|
+
sentry-cli-Linux-x86_64=361329221eb6d1047b1889e8b66b3553d8689a605fa384bf31fbb3f756083106
|
|
8
|
+
sentry-cli-Windows-i686.exe=5b3ac984d793dfc710baad4a81a0188eaf5d366f3255c35b4b7781719cfd86a2
|
|
9
|
+
sentry-cli-Windows-x86_64.exe=e19caae5a7d1bd9c90fbb73b5ea380c9afac098e7fdaea53eadc86e5a0806c23
|
package/js/index.d.ts
CHANGED
|
@@ -38,11 +38,6 @@ declare module '@sentry/cli' {
|
|
|
38
38
|
* This value will update `SENTRY_VCS_REMOTE` env variable.
|
|
39
39
|
*/
|
|
40
40
|
vcsRemote?: string;
|
|
41
|
-
/**
|
|
42
|
-
* Unique identifier for the distribution, used to further segment your release.
|
|
43
|
-
* Usually your build number.
|
|
44
|
-
*/
|
|
45
|
-
dist?: string;
|
|
46
41
|
/**
|
|
47
42
|
* If true, all logs are suppressed.
|
|
48
43
|
*/
|
|
@@ -116,6 +111,11 @@ declare module '@sentry/cli' {
|
|
|
116
111
|
* By default the following file extensions are processed: js, map, jsbundle and bundle.
|
|
117
112
|
*/
|
|
118
113
|
ext?: string[];
|
|
114
|
+
/**
|
|
115
|
+
* Unique identifier for the distribution, used to further segment your release.
|
|
116
|
+
* Usually your build number.
|
|
117
|
+
*/
|
|
118
|
+
dist?: string;
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
export interface SentryCliNewDeployOptions {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/",
|
|
5
5
|
"repository": "git://github.com/getsentry/sentry-cli.git",
|
|
6
6
|
"homepage": "https://docs.sentry.io/hosted/learn/cli/",
|
package/scripts/install.js
CHANGED
|
@@ -47,9 +47,10 @@ function shouldRenderProgressBar() {
|
|
|
47
47
|
const silentFlag = process.argv.some((v) => v === '--silent');
|
|
48
48
|
const silentConfig = process.env.npm_config_loglevel === 'silent';
|
|
49
49
|
const silentEnv = process.env.SENTRYCLI_NO_PROGRESS_BAR;
|
|
50
|
-
const ciEnv = process.env.CI === 'true';
|
|
50
|
+
const ciEnv = process.env.CI === 'true' || process.env.CI === '1';
|
|
51
|
+
const notTTY = !process.stdout.isTTY;
|
|
51
52
|
// If any of possible options is set, skip rendering of progress bar
|
|
52
|
-
return !(silentFlag || silentConfig || silentEnv || ciEnv);
|
|
53
|
+
return !(silentFlag || silentConfig || silentEnv || ciEnv || notTTY);
|
|
53
54
|
}
|
|
54
55
|
|
|
55
56
|
function getDownloadUrl(platform, arch) {
|