@socketsecurity/cli-with-sentry 0.14.128 → 0.14.129
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 +9 -9
- 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 +9 -9
- package/dist/require/cli.js.map +1 -1
- package/dist/require/shadow-npm-inject.js +2 -2
- package/dist/require/shadow-npm-inject.js.map +1 -1
- package/package.json +1 -1
package/dist/require/cli.js
CHANGED
|
@@ -917,7 +917,7 @@ function emitBanner(name) {
|
|
|
917
917
|
logger.logger.error(getAsciiHeader(name))
|
|
918
918
|
}
|
|
919
919
|
function getAsciiHeader(command) {
|
|
920
|
-
const cliVersion = '0.14.
|
|
920
|
+
const cliVersion = '0.14.129:a3be3d1:d8cba126:pub' // The '@rollup/plugin-replace' will replace "process.env['INLINED_SOCKET_CLI_VERSION_HASH']".
|
|
921
921
|
const nodeVersion = process$1.version
|
|
922
922
|
const apiToken = shadowNpmInject.getDefaultToken()
|
|
923
923
|
const defaultOrg = shadowNpmInject.getConfigValue('defaultOrg')
|
|
@@ -4506,12 +4506,12 @@ async function pnpmFix(
|
|
|
4506
4506
|
const workspaceName = isWorkspaceRoot
|
|
4507
4507
|
? 'root'
|
|
4508
4508
|
: path$1.relative(rootPath, path$1.dirname(pkgJsonPath))
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
|
|
4514
|
-
|
|
4509
|
+
|
|
4510
|
+
// Always re-read the editable package.json to avoid stale mutations across iterations
|
|
4511
|
+
// eslint-disable-next-line no-await-in-loop
|
|
4512
|
+
const editablePkgJson = await packages.readPackageJson(pkgJsonPath, {
|
|
4513
|
+
editable: true
|
|
4514
|
+
})
|
|
4515
4515
|
|
|
4516
4516
|
// Get current overrides for revert logic
|
|
4517
4517
|
const oldPnpmSection = editablePkgJson.content[PNPM$8]
|
|
@@ -12289,7 +12289,7 @@ void (async () => {
|
|
|
12289
12289
|
await vendor.updater({
|
|
12290
12290
|
name: SOCKET_CLI_BIN_NAME,
|
|
12291
12291
|
// The '@rollup/plugin-replace' will replace "process.env['INLINED_SOCKET_CLI_VERSION']".
|
|
12292
|
-
version: '0.14.
|
|
12292
|
+
version: '0.14.129',
|
|
12293
12293
|
ttl: 86_400_000 /* 24 hours in milliseconds */
|
|
12294
12294
|
})
|
|
12295
12295
|
try {
|
|
@@ -12357,5 +12357,5 @@ void (async () => {
|
|
|
12357
12357
|
await shadowNpmInject.captureException(e)
|
|
12358
12358
|
}
|
|
12359
12359
|
})()
|
|
12360
|
-
//# debugId=
|
|
12360
|
+
//# debugId=6bcb8bbd-6cbf-49de-b216-2e38923f18e6
|
|
12361
12361
|
//# sourceMappingURL=cli.js.map
|