socket 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/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/module-sync/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:0a60013f: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')
|
|
@@ -4502,12 +4502,12 @@ async function pnpmFix(
|
|
|
4502
4502
|
const workspaceName = isWorkspaceRoot
|
|
4503
4503
|
? 'root'
|
|
4504
4504
|
: path$1.relative(rootPath, path$1.dirname(pkgJsonPath))
|
|
4505
|
-
|
|
4506
|
-
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4505
|
+
|
|
4506
|
+
// Always re-read the editable package.json to avoid stale mutations across iterations
|
|
4507
|
+
// eslint-disable-next-line no-await-in-loop
|
|
4508
|
+
const editablePkgJson = await packages.readPackageJson(pkgJsonPath, {
|
|
4509
|
+
editable: true
|
|
4510
|
+
})
|
|
4511
4511
|
|
|
4512
4512
|
// Get current overrides for revert logic
|
|
4513
4513
|
const oldPnpmSection = editablePkgJson.content[PNPM$8]
|
|
@@ -12285,7 +12285,7 @@ void (async () => {
|
|
|
12285
12285
|
await vendor.updater({
|
|
12286
12286
|
name: SOCKET_CLI_BIN_NAME,
|
|
12287
12287
|
// The '@rollup/plugin-replace' will replace "process.env['INLINED_SOCKET_CLI_VERSION']".
|
|
12288
|
-
version: '0.14.
|
|
12288
|
+
version: '0.14.129',
|
|
12289
12289
|
ttl: 86_400_000 /* 24 hours in milliseconds */
|
|
12290
12290
|
})
|
|
12291
12291
|
try {
|
|
@@ -12353,5 +12353,5 @@ void (async () => {
|
|
|
12353
12353
|
await shadowNpmInject.captureException(e)
|
|
12354
12354
|
}
|
|
12355
12355
|
})()
|
|
12356
|
-
//# debugId=
|
|
12356
|
+
//# debugId=b66ba2bc-112f-4b8d-9a20-2281190b67fe
|
|
12357
12357
|
//# sourceMappingURL=cli.js.map
|