@socketsecurity/cli-with-sentry 0.14.80 → 0.14.82
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/instrument-with-sentry.js +2 -2
- package/dist/instrument-with-sentry.js.map +1 -1
- package/dist/module-sync/cli.js +6 -6
- package/dist/module-sync/cli.js.map +1 -1
- package/dist/module-sync/shadow-npm-inject.js +2 -2
- package/dist/module-sync/shadow-npm-inject.js.map +1 -1
- package/dist/require/cli.js +6 -6
- package/dist/require/cli.js.map +1 -1
- package/package.json +1 -1
- package/dist/module-sync/fs.d.ts +0 -61
package/dist/require/cli.js
CHANGED
|
@@ -912,7 +912,7 @@ function emitBanner(name) {
|
|
|
912
912
|
logger.logger.error(getAsciiHeader(name))
|
|
913
913
|
}
|
|
914
914
|
function getAsciiHeader(command) {
|
|
915
|
-
const cliVersion = '0.14.
|
|
915
|
+
const cliVersion = '0.14.82:84c0429:963e2f6e:pub' // The '@rollup/plugin-replace' will replace "process.env['INLINED_SOCKET_CLI_VERSION_HASH']".
|
|
916
916
|
const nodeVersion = process$1.version
|
|
917
917
|
const apiToken = shadowNpmInject.getDefaultToken()
|
|
918
918
|
const shownToken = apiToken ? getLastFiveOfApiToken(apiToken) : 'no'
|
|
@@ -4236,7 +4236,7 @@ async function install(pkgEnvDetails, options) {
|
|
|
4236
4236
|
await runAgentInstall(pkgEnvDetails, {
|
|
4237
4237
|
args: ['--no-frozen-lockfile'],
|
|
4238
4238
|
spinner,
|
|
4239
|
-
stdio: 'ignore'
|
|
4239
|
+
stdio: debug.isDebug() ? 'inherit' : 'ignore'
|
|
4240
4240
|
})
|
|
4241
4241
|
}
|
|
4242
4242
|
async function pnpmFix(
|
|
@@ -4408,8 +4408,8 @@ async function pnpmFix(
|
|
|
4408
4408
|
await enableAutoMerge(prResponse.data)
|
|
4409
4409
|
}
|
|
4410
4410
|
}
|
|
4411
|
-
} catch {
|
|
4412
|
-
spinner?.error(`Reverting ${fixSpec}
|
|
4411
|
+
} catch (e) {
|
|
4412
|
+
spinner?.error(`Reverting ${fixSpec}`, e)
|
|
4413
4413
|
if (saved) {
|
|
4414
4414
|
editablePkgJson.update(revertData)
|
|
4415
4415
|
// eslint-disable-next-line no-await-in-loop
|
|
@@ -11304,7 +11304,7 @@ void (async () => {
|
|
|
11304
11304
|
await vendor.updater({
|
|
11305
11305
|
name: SOCKET_CLI_BIN_NAME,
|
|
11306
11306
|
// The '@rollup/plugin-replace' will replace "process.env['INLINED_SOCKET_CLI_VERSION']".
|
|
11307
|
-
version: '0.14.
|
|
11307
|
+
version: '0.14.82',
|
|
11308
11308
|
ttl: 86_400_000 /* 24 hours in milliseconds */
|
|
11309
11309
|
})
|
|
11310
11310
|
try {
|
|
@@ -11372,5 +11372,5 @@ void (async () => {
|
|
|
11372
11372
|
await shadowNpmInject.captureException(e)
|
|
11373
11373
|
}
|
|
11374
11374
|
})()
|
|
11375
|
-
//# debugId=
|
|
11375
|
+
//# debugId=13c56b6a-eba8-4e13-a8e9-5e9fda6254ca
|
|
11376
11376
|
//# sourceMappingURL=cli.js.map
|