socket 0.14.81 → 0.14.83
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 +4 -4
- package/dist/module-sync/cli.js.map +1 -1
- package/dist/module-sync/fs.d.ts +61 -0
- 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 +4 -4
- package/dist/require/cli.js.map +1 -1
- package/package.json +6 -6
package/dist/module-sync/cli.js
CHANGED
|
@@ -915,7 +915,7 @@ function emitBanner(name) {
|
|
|
915
915
|
logger.logger.error(getAsciiHeader(name))
|
|
916
916
|
}
|
|
917
917
|
function getAsciiHeader(command) {
|
|
918
|
-
const cliVersion = '0.14.
|
|
918
|
+
const cliVersion = '0.14.83:e27c5f8:c43af3ac:pub' // The '@rollup/plugin-replace' will replace "process.env['INLINED_SOCKET_CLI_VERSION_HASH']".
|
|
919
919
|
const nodeVersion = process$1.version
|
|
920
920
|
const apiToken = shadowNpmInject.getDefaultToken()
|
|
921
921
|
const shownToken = apiToken ? getLastFiveOfApiToken(apiToken) : 'no'
|
|
@@ -4235,7 +4235,7 @@ async function install(pkgEnvDetails, options) {
|
|
|
4235
4235
|
await runAgentInstall(pkgEnvDetails, {
|
|
4236
4236
|
args: ['--no-frozen-lockfile'],
|
|
4237
4237
|
spinner,
|
|
4238
|
-
stdio: 'ignore'
|
|
4238
|
+
stdio: debug.isDebug() ? 'inherit' : 'ignore'
|
|
4239
4239
|
})
|
|
4240
4240
|
}
|
|
4241
4241
|
async function pnpmFix(
|
|
@@ -11301,7 +11301,7 @@ void (async () => {
|
|
|
11301
11301
|
await updateNotifier({
|
|
11302
11302
|
name: SOCKET_CLI_BIN_NAME,
|
|
11303
11303
|
// The '@rollup/plugin-replace' will replace "process.env['INLINED_SOCKET_CLI_VERSION']".
|
|
11304
|
-
version: '0.14.
|
|
11304
|
+
version: '0.14.83',
|
|
11305
11305
|
ttl: 86_400_000 /* 24 hours in milliseconds */
|
|
11306
11306
|
})
|
|
11307
11307
|
try {
|
|
@@ -11369,5 +11369,5 @@ void (async () => {
|
|
|
11369
11369
|
await shadowNpmInject.captureException(e)
|
|
11370
11370
|
}
|
|
11371
11371
|
})()
|
|
11372
|
-
//# debugId=
|
|
11372
|
+
//# debugId=313e6a3f-86e8-433d-a595-f9ca560155c6
|
|
11373
11373
|
//# sourceMappingURL=cli.js.map
|