@socketsecurity/cli-with-sentry 1.0.69 → 1.0.70
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 +161 -111
- package/dist/cli.js.map +1 -1
- package/dist/constants.js +3 -3
- package/dist/constants.js.map +1 -1
- package/dist/tsconfig.dts.tsbuildinfo +1 -0
- package/dist/types/commands/fix/agent-fix.d.mts +3 -0
- package/dist/types/commands/fix/agent-fix.d.mts.map +1 -1
- package/dist/types/commands/fix/cmd-fix.d.mts.map +1 -1
- package/dist/types/commands/fix/coana-fix.d.mts +6 -0
- package/dist/types/commands/fix/coana-fix.d.mts.map +1 -0
- 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/utils.js +79 -79
- package/dist/utils.js.map +1 -1
- package/dist/vendor.js +2835 -493
- package/external/@coana-tech/cli/cli.mjs +657 -586
- package/external/@socketsecurity/registry/external/@socketregistry/packageurl-js.js +1 -1
- package/external/@socketsecurity/registry/external/cacache.js +1976 -295
- package/external/@socketsecurity/registry/external/libnpmpack.js +83273 -78270
- package/external/@socketsecurity/registry/external/npm-package-arg.js +58 -1
- package/external/@socketsecurity/registry/external/pacote.js +15839 -3934
- package/external/@socketsecurity/registry/manifest.json +14 -14
- package/package.json +10 -10
|
@@ -392,7 +392,7 @@ function requireHelpers() {
|
|
|
392
392
|
}
|
|
393
393
|
const helperNames = Object.keys(helpers).sort()
|
|
394
394
|
const propNames = [
|
|
395
|
-
...new Set(Object.values(helpers).
|
|
395
|
+
...new Set(Object.values(helpers).flatMap(Object.keys))
|
|
396
396
|
].sort(comparator)
|
|
397
397
|
const nsObject = Object.create(null)
|
|
398
398
|
for (let i = 0, { length } = propNames; i < length; i += 1) {
|