socket 0.14.115 → 0.14.116
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 +3 -4
- package/dist/module-sync/cli.js.map +1 -1
- package/dist/module-sync/shadow-npm-inject.js +28 -11
- package/dist/module-sync/shadow-npm-inject.js.map +1 -1
- package/dist/require/cli.js +3 -4
- package/dist/require/cli.js.map +1 -1
- package/dist/require/shadow-npm-inject.js +28 -11
- 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.116:0dae31b:0be36591: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')
|
|
@@ -3900,7 +3900,6 @@ async function doesPullRequestExistForBranch(owner, repo, branch) {
|
|
|
3900
3900
|
head: `${owner}:${branch}`,
|
|
3901
3901
|
state: 'open'
|
|
3902
3902
|
})
|
|
3903
|
-
debug.debugLog('doesPullRequestExistForBranch > prs', prs)
|
|
3904
3903
|
return prs.length > 0
|
|
3905
3904
|
} catch {}
|
|
3906
3905
|
return false
|
|
@@ -12303,7 +12302,7 @@ void (async () => {
|
|
|
12303
12302
|
await vendor.updater({
|
|
12304
12303
|
name: SOCKET_CLI_BIN_NAME,
|
|
12305
12304
|
// The '@rollup/plugin-replace' will replace "process.env['INLINED_SOCKET_CLI_VERSION']".
|
|
12306
|
-
version: '0.14.
|
|
12305
|
+
version: '0.14.116',
|
|
12307
12306
|
ttl: 86_400_000 /* 24 hours in milliseconds */
|
|
12308
12307
|
})
|
|
12309
12308
|
try {
|
|
@@ -12371,5 +12370,5 @@ void (async () => {
|
|
|
12371
12370
|
await shadowNpmInject.captureException(e)
|
|
12372
12371
|
}
|
|
12373
12372
|
})()
|
|
12374
|
-
//# debugId=
|
|
12373
|
+
//# debugId=3e5ae09a-9e97-4ee4-afe7-c5b14260eb95
|
|
12375
12374
|
//# sourceMappingURL=cli.js.map
|