@sentry/cli 2.17.2 → 2.17.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/checksums.txt +9 -9
- package/js/helper.js +1 -1
- package/package.json +1 -1
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=e9c352402970fd0bd9b3bec27c0d19e6b74220f35c48651cc0a9396c39a13e33
|
|
2
|
+
sentry-cli-Darwin-universal=2918835561d4d319630234e4dff906177e87aa1fd745c7f90b1288c275c4e1f1
|
|
3
|
+
sentry-cli-Darwin-x86_64=d4dbe03f23997469940647157b3990de6fc5c14ccc926b26a0c3a8daad4709dc
|
|
4
|
+
sentry-cli-Linux-aarch64=dd0cd28b3daa422c0c1bb748d276d74ec65d84a2241e77ab04ebf96f6b200faf
|
|
5
|
+
sentry-cli-Linux-armv7=5cf86e86f344f3bf00acb0010eadf7055ee08d71aadbdd87ac5531a3a0b8c43d
|
|
6
|
+
sentry-cli-Linux-i686=cd641ec59233e8f04e5e06122e69d9431b02fafcef6d751e6a134410152605a4
|
|
7
|
+
sentry-cli-Linux-x86_64=45834bbedcf3f7ec901159f8f9c885d3b0b93cab959ac7f288c56ed37e741d72
|
|
8
|
+
sentry-cli-Windows-i686.exe=55d9578d429f89309b4edc3588ed7d40ff9b90b6a4e96c32e5754775c970b385
|
|
9
|
+
sentry-cli-Windows-x86_64.exe=d87cceb5edfef2e4744c0fe49ba6de0b86da0767406d6803a4525bf5539d98d7
|
package/js/helper.js
CHANGED
|
@@ -61,7 +61,7 @@ function mockBinaryPath(mockPath) {
|
|
|
61
61
|
function serializeOptions(schema, options) {
|
|
62
62
|
return Object.keys(schema).reduce((newOptions, option) => {
|
|
63
63
|
const paramValue = options[option];
|
|
64
|
-
if (paramValue === undefined) {
|
|
64
|
+
if (paramValue === undefined || paramValue === null) {
|
|
65
65
|
return newOptions;
|
|
66
66
|
}
|
|
67
67
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/cli",
|
|
3
|
-
"version": "2.17.
|
|
3
|
+
"version": "2.17.4",
|
|
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/",
|