socket 1.0.67 → 1.0.68
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 +2 -3
- package/dist/cli.js.map +1 -1
- package/dist/constants.js +17 -13
- package/dist/constants.js.map +1 -1
- package/dist/types/commands/ci/fetch-default-org-slug.d.mts.map +1 -1
- package/dist/types/commands/fix/cmd-fix.d.mts.map +1 -1
- package/dist/types/constants.d.mts +1 -0
- package/dist/types/constants.d.mts.map +1 -1
- package/dist/utils.js +11 -1
- package/dist/utils.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -4747,8 +4747,7 @@ async function run$H(argv, importMeta, {
|
|
|
4747
4747
|
const orgSlugCResult = await utils.getDefaultOrgSlug();
|
|
4748
4748
|
if (!orgSlugCResult.ok) {
|
|
4749
4749
|
process.exitCode = orgSlugCResult.code ?? 1;
|
|
4750
|
-
|
|
4751
|
-
// logger.log(serializeResultJson(orgSlugCResult))
|
|
4750
|
+
logger.logger.fail('Unable to resolve a Socket account organization.\nEnsure a Socket API token is specified for the organization using the SOCKET_CLI_API_TOKEN environment variable.');
|
|
4752
4751
|
return;
|
|
4753
4752
|
}
|
|
4754
4753
|
const orgSlug = orgSlugCResult.data;
|
|
@@ -14523,5 +14522,5 @@ void (async () => {
|
|
|
14523
14522
|
await utils.captureException(e);
|
|
14524
14523
|
}
|
|
14525
14524
|
})();
|
|
14526
|
-
//# debugId=
|
|
14525
|
+
//# debugId=7d509d3a-cd9a-4499-b6b6-88b32a2ff18
|
|
14527
14526
|
//# sourceMappingURL=cli.js.map
|