@socketsecurity/cli-with-sentry 1.0.20 → 1.0.22
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/cli.js +349 -326
- package/dist/cli.js.map +1 -1
- package/dist/constants.js +4 -4
- package/dist/constants.js.map +1 -1
- package/dist/shadow-npm-inject.js +64 -7
- package/dist/shadow-npm-inject.js.map +1 -1
- package/dist/types/commands/audit-log/output-audit-log.d.mts.map +1 -1
- package/dist/types/commands/fix/agent-fix.d.mts +3 -5
- package/dist/types/commands/fix/agent-fix.d.mts.map +1 -1
- package/dist/types/commands/fix/fix-branch-helpers.d.mts +3 -4
- package/dist/types/commands/fix/fix-branch-helpers.d.mts.map +1 -1
- package/dist/types/commands/fix/fix-env-helpers.d.mts +9 -9
- package/dist/types/commands/fix/fix-env-helpers.d.mts.map +1 -1
- package/dist/types/commands/fix/git.d.mts +1 -0
- package/dist/types/commands/fix/git.d.mts.map +1 -1
- package/dist/types/commands/fix/handle-fix.d.mts.map +1 -1
- package/dist/types/commands/fix/npm-fix.d.mts.map +1 -1
- package/dist/types/commands/fix/pnpm-fix.d.mts.map +1 -1
- package/dist/types/commands/fix/{open-pr.d.mts → pull-request.d.mts} +11 -6
- package/dist/types/commands/fix/pull-request.d.mts.map +1 -0
- package/dist/types/commands/fix/shared.d.mts +1 -2
- package/dist/types/commands/fix/shared.d.mts.map +1 -1
- package/dist/types/commands/manifest/cmd-manifest-cdxgen.d.mts.map +1 -1
- package/dist/types/commands/manifest/cmd-manifest-gradle.d.mts.map +1 -1
- package/dist/types/commands/manifest/cmd-manifest-kotlin.d.mts.map +1 -1
- package/dist/types/commands/manifest/cmd-manifest-scala.d.mts.map +1 -1
- package/dist/types/commands/manifest/detect-manifest-actions.d.mts.map +1 -1
- package/dist/types/commands/optimize/update-lockfile.d.mts.map +1 -1
- package/dist/types/commands/repository/fetch-list-all-repos.d.mts.map +1 -1
- package/dist/types/commands/scan/fetch-report-data.d.mts.map +1 -1
- package/dist/types/commands/scan/fetch-scan.d.mts.map +1 -1
- package/dist/types/commands/wrapper/postinstall-wrapper.d.mts.map +1 -1
- package/dist/types/shadow/npm/arborist-helpers.d.mts.map +1 -1
- package/dist/types/utils/alerts-map.d.mts +0 -1
- package/dist/types/utils/alerts-map.d.mts.map +1 -1
- package/dist/types/utils/api.d.mts.map +1 -1
- package/dist/types/utils/npm-config.d.mts +14 -0
- package/dist/types/utils/npm-config.d.mts.map +1 -0
- package/dist/types/utils/npm-paths.d.mts +2 -2
- package/dist/types/utils/npm-paths.d.mts.map +1 -1
- package/dist/types/utils/package-environment.d.mts.map +1 -1
- package/dist/types/utils/path-resolve.d.mts.map +1 -1
- package/dist/types/utils/socket-package-alert.d.mts +1 -2
- package/dist/types/utils/socket-package-alert.d.mts.map +1 -1
- package/dist/types/utils/socketjson.d.mts.map +1 -1
- package/dist/utils.js +148 -70
- package/dist/utils.js.map +1 -1
- package/dist/vendor.js +66962 -66962
- package/external/@coana-tech/cli/cli.mjs +60278 -55993
- package/external/@socketsecurity/registry/external/@inquirer/confirm.js +1 -1
- package/external/@socketsecurity/registry/external/@inquirer/input.js +10 -2
- package/external/@socketsecurity/registry/external/@inquirer/password.js +1 -1
- package/external/@socketsecurity/registry/external/@inquirer/search.js +1 -1
- package/external/@socketsecurity/registry/external/@inquirer/select.js +1 -1
- package/external/@socketsecurity/registry/external/browserslist.js +572 -570
- package/external/@socketsecurity/registry/external/debug.js +1163 -0
- package/external/@socketsecurity/registry/lib/constants/env.js +9 -4
- package/external/@socketsecurity/registry/lib/debug.js +139 -47
- package/external/@socketsecurity/registry/lib/logger.js +2 -2
- package/external/@socketsecurity/registry/lib/packages.js +1 -2
- package/package.json +18 -18
- package/dist/types/commands/fix/open-pr.d.mts.map +0 -1
- package/dist/types/shadow/npm/proc-log/index.d.mts +0 -3
- package/dist/types/shadow/npm/proc-log/index.d.mts.map +0 -1
|
@@ -4,11 +4,18 @@ const { envAsBoolean, envAsString } = /*@__PURE__*/ require('../env')
|
|
|
4
4
|
|
|
5
5
|
const { env } = process
|
|
6
6
|
|
|
7
|
+
const DEBUG = envAsString(env.DEBUG)
|
|
8
|
+
|
|
7
9
|
module.exports = Object.freeze({
|
|
8
10
|
__proto__: null,
|
|
9
11
|
// CI is always set to 'true' in a GitHub action.
|
|
10
12
|
// https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/store-information-in-variables#default-environment-variables
|
|
11
13
|
CI: envAsBoolean(env.CI),
|
|
14
|
+
// Flag set to enable debug logging.
|
|
15
|
+
DEBUG,
|
|
16
|
+
// Variable to set the debug log level
|
|
17
|
+
// (notice, error, warn, info, verbose, http, silly).
|
|
18
|
+
LOG_LEVEL: envAsString(env.LOG_LEVEL),
|
|
12
19
|
// .github/workflows/provenance.yml defines this.
|
|
13
20
|
// https://docs.github.com/en/actions/use-cases-and-examples/publishing-packages/publishing-nodejs-packages
|
|
14
21
|
NODE_AUTH_TOKEN: envAsString(env.NODE_AUTH_TOKEN),
|
|
@@ -20,10 +27,8 @@ module.exports = Object.freeze({
|
|
|
20
27
|
// PRE_COMMIT is set to '1' by our 'test-pre-commit' script run by the
|
|
21
28
|
// .husky/pre-commit hook.
|
|
22
29
|
PRE_COMMIT: envAsBoolean(env.PRE_COMMIT),
|
|
23
|
-
// Flag set to
|
|
24
|
-
|
|
25
|
-
// TODO: Make the environment variable name configurable.
|
|
26
|
-
SOCKET_CLI_DEBUG: envAsBoolean(env.SOCKET_CLI_DEBUG),
|
|
30
|
+
// Flag set to enable debug logging in Socket CLI.
|
|
31
|
+
SOCKET_CLI_DEBUG: !!DEBUG || envAsBoolean(env.SOCKET_CLI_DEBUG),
|
|
27
32
|
// TAP=1 is set by the tap-run test runner.
|
|
28
33
|
// https://node-tap.org/environment/#environment-variables-used-by-tap
|
|
29
34
|
TAP: envAsBoolean(env.TAP),
|
|
@@ -1,55 +1,149 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
|
+
const { apply: ReflectApply } = Reflect
|
|
4
|
+
|
|
5
|
+
const { hasOwn } = /*@__PURE__*/ require('./objects')
|
|
3
6
|
const { applyLinePrefix } = /*@__PURE__*/ require('./strings')
|
|
4
7
|
|
|
5
|
-
|
|
8
|
+
let _debugJs
|
|
9
|
+
/*@__NO_SIDE_EFFECTS__*/
|
|
10
|
+
function getDebugJs() {
|
|
11
|
+
if (_debugJs === undefined) {
|
|
12
|
+
// The 'debug' package is browser safe.
|
|
13
|
+
_debugJs = /*@__PURE__*/ require('../external/debug').default
|
|
14
|
+
}
|
|
15
|
+
return _debugJs
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
const debugByNamespace = new Map()
|
|
19
|
+
/*@__NO_SIDE_EFFECTS__*/
|
|
20
|
+
function getDebugJsInstance(namespace) {
|
|
21
|
+
let inst = debugByNamespace.get(namespace)
|
|
22
|
+
if (inst) {
|
|
23
|
+
return inst
|
|
24
|
+
}
|
|
25
|
+
const debugJs = getDebugJs()
|
|
26
|
+
const ENV = /*@__PURE__*/ require('./constants/env')
|
|
27
|
+
if (
|
|
28
|
+
!ENV.DEBUG &&
|
|
29
|
+
ENV.SOCKET_CLI_DEBUG &&
|
|
30
|
+
// Ignore 'inspect' namespace by default.
|
|
31
|
+
namespace !== 'inspect'
|
|
32
|
+
) {
|
|
33
|
+
debugJs.enable(namespace)
|
|
34
|
+
}
|
|
35
|
+
inst = debugJs(namespace)
|
|
36
|
+
inst.log = customLog
|
|
37
|
+
debugByNamespace.set(namespace, inst)
|
|
38
|
+
return inst
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
let _util
|
|
42
|
+
/*@__NO_SIDE_EFFECTS__*/
|
|
43
|
+
function getUtil() {
|
|
44
|
+
if (_util === undefined) {
|
|
45
|
+
// Use non-'node:' prefixed require to avoid Webpack errors.
|
|
46
|
+
// eslint-disable-next-line n/prefer-node-protocol
|
|
47
|
+
_util = /*@__PURE__*/ require('util')
|
|
48
|
+
}
|
|
49
|
+
return _util
|
|
50
|
+
}
|
|
6
51
|
|
|
7
52
|
/*@__NO_SIDE_EFFECTS__*/
|
|
8
|
-
function
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
53
|
+
function customLog() {
|
|
54
|
+
const { logger } = /*@__PURE__*/ require('./logger')
|
|
55
|
+
const debugJs = getDebugJs()
|
|
56
|
+
const util = getUtil()
|
|
57
|
+
ReflectApply(logger.info, logger, [
|
|
58
|
+
util.formatWithOptions(debugJs.inspectOpts, ...arguments)
|
|
59
|
+
])
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/*@__NO_SIDE_EFFECTS__*/
|
|
63
|
+
function isEnabled(namespaces) {
|
|
64
|
+
if (typeof namespaces !== 'string' || !namespaces || namespaces === '*') {
|
|
65
|
+
return true
|
|
66
|
+
}
|
|
67
|
+
const split = namespaces
|
|
68
|
+
.trim()
|
|
69
|
+
.replace(/\s+/g, ',')
|
|
70
|
+
.split(',')
|
|
71
|
+
.filter(Boolean)
|
|
72
|
+
const names = []
|
|
73
|
+
const skips = []
|
|
74
|
+
for (const ns of split) {
|
|
75
|
+
if (ns.startsWith('-')) {
|
|
76
|
+
skips.push(ns.slice(1))
|
|
77
|
+
} else {
|
|
78
|
+
names.push(ns)
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
if (names.length && !names.some(ns => !!getDebugJsInstance(ns).enabled)) {
|
|
82
|
+
return false
|
|
83
|
+
}
|
|
84
|
+
return skips.every(ns => !getDebugJsInstance(ns).enabled)
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/*@__NO_SIDE_EFFECTS__*/
|
|
88
|
+
function debugDir(namespaces, obj, options) {
|
|
89
|
+
if (!isEnabled(namespaces)) {
|
|
90
|
+
return
|
|
12
91
|
}
|
|
92
|
+
if (options === undefined) {
|
|
93
|
+
const debugJs = getDebugJs()
|
|
94
|
+
options = debugJs.inspectOpts
|
|
95
|
+
}
|
|
96
|
+
const { logger } = /*@__PURE__*/ require('./logger')
|
|
97
|
+
logger.dir(obj, options)
|
|
13
98
|
}
|
|
14
99
|
|
|
15
100
|
let pointingTriangle
|
|
16
101
|
/*@__NO_SIDE_EFFECTS__*/
|
|
17
|
-
function debugFn(...args) {
|
|
18
|
-
if (
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
102
|
+
function debugFn(namespaces, ...args) {
|
|
103
|
+
if (!isEnabled(namespaces)) {
|
|
104
|
+
return
|
|
105
|
+
}
|
|
106
|
+
const { stack } = new Error()
|
|
107
|
+
let lineCount = 0
|
|
108
|
+
let lineStart = 0
|
|
109
|
+
let name = 'anonymous'
|
|
110
|
+
// Scan the stack trace character-by-character to find the 4th line
|
|
111
|
+
// (index 3), which is typically the caller of debugFn.
|
|
112
|
+
for (let i = 0, { length } = stack; i < length; i += 1) {
|
|
113
|
+
if (stack.charCodeAt(i) === 10 /*'\n'*/) {
|
|
114
|
+
lineCount += 1
|
|
115
|
+
if (lineCount < 4) {
|
|
116
|
+
// Store the start index of the next line.
|
|
117
|
+
lineStart = i + 1
|
|
118
|
+
} else {
|
|
119
|
+
// Extract the full line and trim it.
|
|
120
|
+
const line = stack.slice(lineStart, i).trimStart()
|
|
121
|
+
// Match the function name portion (e.g., "async runFix").
|
|
122
|
+
const match = /(?<=^at\s+).*?(?=\s+\(|$)/.exec(line)?.[0]
|
|
123
|
+
if (match) {
|
|
124
|
+
name = match
|
|
125
|
+
// Strip known V8 invocation prefixes to get the name.
|
|
126
|
+
.replace(/^(?:async|bound|get|new|set)\s+/, '')
|
|
127
|
+
if (name.startsWith('Object.')) {
|
|
128
|
+
// Strip leading 'Object.' if not an own property of Object.
|
|
129
|
+
const afterDot = name.slice(7 /*'Object.'.length*/)
|
|
130
|
+
if (!hasOwn(Object, afterDot)) {
|
|
131
|
+
name = afterDot
|
|
132
|
+
}
|
|
40
133
|
}
|
|
41
|
-
break
|
|
42
134
|
}
|
|
135
|
+
break
|
|
43
136
|
}
|
|
44
137
|
}
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
138
|
+
}
|
|
139
|
+
if (pointingTriangle === undefined) {
|
|
140
|
+
const supported =
|
|
141
|
+
/*@__PURE__*/ require('../external/@socketregistry/is-unicode-supported')()
|
|
142
|
+
pointingTriangle = supported ? '▸' : '>'
|
|
143
|
+
}
|
|
144
|
+
const text = args.at(0)
|
|
145
|
+
const logArgs =
|
|
146
|
+
typeof text === 'string'
|
|
53
147
|
? [
|
|
54
148
|
applyLinePrefix(
|
|
55
149
|
`${name ? `${name} ${pointingTriangle} ` : ''}${text}`,
|
|
@@ -58,24 +152,22 @@ function debugFn(...args) {
|
|
|
58
152
|
...args.slice(1)
|
|
59
153
|
]
|
|
60
154
|
: args
|
|
61
|
-
|
|
62
|
-
|
|
155
|
+
const { logger } = /*@__PURE__*/ require('./logger')
|
|
156
|
+
ReflectApply(logger.info, logger, logArgs)
|
|
63
157
|
}
|
|
64
158
|
|
|
65
159
|
/*@__NO_SIDE_EFFECTS__*/
|
|
66
|
-
function debugLog() {
|
|
67
|
-
if (
|
|
68
|
-
|
|
69
|
-
ReflectApply(logger.info, logger, arguments)
|
|
160
|
+
function debugLog(namespaces, ...args) {
|
|
161
|
+
if (!isEnabled(namespaces)) {
|
|
162
|
+
return
|
|
70
163
|
}
|
|
164
|
+
ReflectApply(customLog, undefined, args)
|
|
71
165
|
}
|
|
72
166
|
|
|
73
167
|
/*@__NO_SIDE_EFFECTS__*/
|
|
74
|
-
function isDebug() {
|
|
168
|
+
function isDebug(namespaces) {
|
|
75
169
|
const ENV = /*@__PURE__*/ require('./constants/env')
|
|
76
|
-
|
|
77
|
-
// TODO: Make the environment variable name configurable.
|
|
78
|
-
return ENV.SOCKET_CLI_DEBUG
|
|
170
|
+
return ENV.SOCKET_CLI_DEBUG && isEnabled(namespaces)
|
|
79
171
|
}
|
|
80
172
|
|
|
81
173
|
module.exports = {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
|
-
const { applyLinePrefix, isBlankString } = /*@__PURE__*/ require('./strings')
|
|
4
|
-
|
|
5
3
|
const globalConsole = console
|
|
6
4
|
const { apply: ReflectApply, construct: ReflectConstruct } = Reflect
|
|
7
5
|
|
|
6
|
+
const { applyLinePrefix, isBlankString } = /*@__PURE__*/ require('./strings')
|
|
7
|
+
|
|
8
8
|
let _Console
|
|
9
9
|
/*@__NO_SIDE_EFFECTS__*/
|
|
10
10
|
function constructConsole(...args) {
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
|
-
const semver = /*@__PURE__*/ require('../external/semver')
|
|
4
|
-
|
|
5
3
|
const abortSignal = /*@__PURE__*/ require('./constants/abort-signal')
|
|
6
4
|
const copyLeftLicenses = /*@__PURE__*/ require('./constants/copy-left-licenses')
|
|
7
5
|
const LOOP_SENTINEL = /*@__PURE__*/ require('./constants/loop-sentinel')
|
|
@@ -706,6 +704,7 @@ function findTypesForSubpath(entryExports, subpath) {
|
|
|
706
704
|
|
|
707
705
|
/*@__NO_SIDE_EFFECTS__*/
|
|
708
706
|
function getReleaseTag(version) {
|
|
707
|
+
const semver = getSemver()
|
|
709
708
|
return semver.prerelease(version)?.join('.') ?? 'latest'
|
|
710
709
|
}
|
|
711
710
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@socketsecurity/cli-with-sentry",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.22",
|
|
4
4
|
"description": "CLI for Socket.dev, includes Sentry error handling, otherwise identical to the regular `socket` package",
|
|
5
5
|
"homepage": "https://github.com/SocketDev/socket-cli",
|
|
6
6
|
"license": "MIT",
|
|
@@ -78,18 +78,18 @@
|
|
|
78
78
|
"update:deps": "npx --yes npm-check-updates"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@babel/core": "7.
|
|
81
|
+
"@babel/core": "7.28.0",
|
|
82
82
|
"@babel/plugin-proposal-export-default-from": "7.27.1",
|
|
83
83
|
"@babel/plugin-transform-export-namespace-from": "7.27.1",
|
|
84
|
-
"@babel/plugin-transform-runtime": "7.
|
|
84
|
+
"@babel/plugin-transform-runtime": "7.28.0",
|
|
85
85
|
"@babel/preset-typescript": "7.27.1",
|
|
86
86
|
"@babel/runtime": "7.27.6",
|
|
87
|
-
"@biomejs/biome": "2.
|
|
88
|
-
"@coana-tech/cli": "14.
|
|
89
|
-
"@cyclonedx/cdxgen": "11.4.
|
|
90
|
-
"@dotenvx/dotenvx": "1.
|
|
87
|
+
"@biomejs/biome": "2.1.1",
|
|
88
|
+
"@coana-tech/cli": "14.10.1",
|
|
89
|
+
"@cyclonedx/cdxgen": "11.4.3",
|
|
90
|
+
"@dotenvx/dotenvx": "1.46.0",
|
|
91
91
|
"@eslint/compat": "1.3.1",
|
|
92
|
-
"@eslint/js": "9.30.
|
|
92
|
+
"@eslint/js": "9.30.1",
|
|
93
93
|
"@npmcli/arborist": "9.1.2",
|
|
94
94
|
"@npmcli/config": "10.3.0",
|
|
95
95
|
"@octokit/graphql": "9.0.1",
|
|
@@ -112,22 +112,22 @@
|
|
|
112
112
|
"@socketregistry/is-interactive": "1.0.6",
|
|
113
113
|
"@socketregistry/packageurl-js": "1.0.8",
|
|
114
114
|
"@socketsecurity/config": "3.0.1",
|
|
115
|
-
"@socketsecurity/registry": "1.0.
|
|
115
|
+
"@socketsecurity/registry": "1.0.225",
|
|
116
116
|
"@socketsecurity/sdk": "1.4.52",
|
|
117
117
|
"@types/blessed": "0.1.25",
|
|
118
118
|
"@types/cmd-shim": "5.0.2",
|
|
119
119
|
"@types/js-yaml": "4.0.9",
|
|
120
120
|
"@types/micromatch": "4.0.9",
|
|
121
121
|
"@types/mock-fs": "4.13.4",
|
|
122
|
-
"@types/node": "24.0.
|
|
122
|
+
"@types/node": "24.0.11",
|
|
123
123
|
"@types/npmcli__arborist": "6.3.1",
|
|
124
124
|
"@types/npmcli__config": "6.0.3",
|
|
125
125
|
"@types/proc-log": "3.0.4",
|
|
126
126
|
"@types/semver": "7.7.0",
|
|
127
127
|
"@types/which": "3.0.4",
|
|
128
128
|
"@types/yargs-parser": "21.0.3",
|
|
129
|
-
"@typescript-eslint/parser": "8.
|
|
130
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
129
|
+
"@typescript-eslint/parser": "8.36.0",
|
|
130
|
+
"@typescript/native-preview": "7.0.0-dev.20250708.1",
|
|
131
131
|
"@vitest/coverage-v8": "3.2.4",
|
|
132
132
|
"blessed": "0.1.81",
|
|
133
133
|
"blessed-contrib": "4.11.0",
|
|
@@ -137,10 +137,10 @@
|
|
|
137
137
|
"custompatch": "1.1.7",
|
|
138
138
|
"del-cli": "6.0.0",
|
|
139
139
|
"dev-null-cli": "2.0.0",
|
|
140
|
-
"eslint": "9.30.
|
|
140
|
+
"eslint": "9.30.1",
|
|
141
141
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
142
142
|
"eslint-plugin-import-x": "4.16.1",
|
|
143
|
-
"eslint-plugin-n": "17.
|
|
143
|
+
"eslint-plugin-n": "17.21.0",
|
|
144
144
|
"eslint-plugin-sort-destructure-keys": "2.0.0",
|
|
145
145
|
"eslint-plugin-unicorn": "56.0.1",
|
|
146
146
|
"globals": "16.3.0",
|
|
@@ -158,11 +158,11 @@
|
|
|
158
158
|
"npm-package-arg": "12.0.2",
|
|
159
159
|
"npm-run-all2": "8.0.4",
|
|
160
160
|
"open": "10.1.2",
|
|
161
|
-
"oxlint": "1.
|
|
161
|
+
"oxlint": "1.6.0",
|
|
162
162
|
"pony-cause": "2.1.11",
|
|
163
163
|
"registry-auth-token": "5.1.0",
|
|
164
164
|
"registry-url": "7.2.0",
|
|
165
|
-
"rollup": "4.44.
|
|
165
|
+
"rollup": "4.44.2",
|
|
166
166
|
"semver": "7.7.2",
|
|
167
167
|
"synp": "1.9.14",
|
|
168
168
|
"terminal-link": "2.1.1",
|
|
@@ -170,7 +170,7 @@
|
|
|
170
170
|
"tinyglobby": "0.2.14",
|
|
171
171
|
"trash": "9.0.0",
|
|
172
172
|
"type-coverage": "2.29.7",
|
|
173
|
-
"typescript-eslint": "8.
|
|
173
|
+
"typescript-eslint": "8.36.0",
|
|
174
174
|
"unplugin-purge-polyfills": "0.1.0",
|
|
175
175
|
"vitest": "3.2.4",
|
|
176
176
|
"which": "5.0.0",
|
|
@@ -239,6 +239,6 @@
|
|
|
239
239
|
"strict": true
|
|
240
240
|
},
|
|
241
241
|
"dependencies": {
|
|
242
|
-
"@sentry/node": "9.
|
|
242
|
+
"@sentry/node": "9.36.0"
|
|
243
243
|
}
|
|
244
244
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"open-pr.d.mts","sourceRoot":"","sources":["../../../../src/commands/fix/open-pr.mts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../../../../src/shadow/npm/proc-log/index.mts"],"names":[],"mappings":"AA0CA,MAAM,MAAM,MAAM,GACd,cAAc,QAAQ,CAAC,GACvB,cAAc,UAAU,CAAC,GACzB,SAAS,CAAA;AAGb,wBAAgB,SAAS,IAAI,MAAM,CAclC"}
|