@socketsecurity/cli-with-sentry 1.0.47 → 1.0.48
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
CHANGED
|
@@ -4286,7 +4286,7 @@ async function install$1(pkgEnvDetails, options) {
|
|
|
4286
4286
|
};
|
|
4287
4287
|
try {
|
|
4288
4288
|
await utils.runAgentInstall(pkgEnvDetails, {
|
|
4289
|
-
args,
|
|
4289
|
+
args: ['--ignore-scripts', '--no-audit', '--no-fund', '--no-progress', '--no-save', '--silent', ...(args ?? [])],
|
|
4290
4290
|
spinner,
|
|
4291
4291
|
stdio: debug.isDebug('stdio') ? 'inherit' : 'ignore'
|
|
4292
4292
|
});
|
|
@@ -4405,13 +4405,13 @@ async function install(pkgEnvDetails, options) {
|
|
|
4405
4405
|
};
|
|
4406
4406
|
try {
|
|
4407
4407
|
await utils.runAgentInstall(pkgEnvDetails, {
|
|
4408
|
-
args: [
|
|
4408
|
+
args: [
|
|
4409
4409
|
// Enable pnpm updates to pnpm-lock.yaml in CI environments.
|
|
4410
4410
|
// https://pnpm.io/cli/install#--frozen-lockfile
|
|
4411
4411
|
'--no-frozen-lockfile',
|
|
4412
4412
|
// Enable a non-interactive pnpm install
|
|
4413
4413
|
// https://github.com/pnpm/pnpm/issues/6778
|
|
4414
|
-
'--config.confirmModulesPurge=false'],
|
|
4414
|
+
'--config.confirmModulesPurge=false', ...(args ?? [])],
|
|
4415
4415
|
spinner,
|
|
4416
4416
|
stdio: debug.isDebug('stdio') ? 'inherit' : 'ignore'
|
|
4417
4417
|
});
|
|
@@ -14314,5 +14314,5 @@ void (async () => {
|
|
|
14314
14314
|
await utils.captureException(e);
|
|
14315
14315
|
}
|
|
14316
14316
|
})();
|
|
14317
|
-
//# debugId=
|
|
14317
|
+
//# debugId=ca4172ba-aeb9-477f-acd0-333975cf37de
|
|
14318
14318
|
//# sourceMappingURL=cli.js.map
|