snyk 1.753.0 → 1.757.0
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/741.index.js +0 -23
- package/dist/cli/741.index.js.map +1 -1
- package/dist/cli/917.index.js +4 -217
- package/dist/cli/917.index.js.map +1 -1
- package/dist/cli/{784.index.js → 925.index.js} +1133 -3
- package/dist/cli/925.index.js.map +1 -0
- package/dist/cli/959.index.js +1442 -454
- package/dist/cli/959.index.js.map +1 -1
- package/dist/cli/commands/monitor/index.d.ts +2 -0
- package/dist/cli/index.js +12 -12
- package/dist/cli/index.js.map +1 -1
- package/dist/lib/analytics/index.d.ts +0 -9
- package/dist/lib/ecosystems/types.d.ts +3 -1
- package/help/commands-docs/_EXAMPLES.md +9 -0
- package/help/commands-docs/config.md +9 -0
- package/help/commands-docs/iac-examples.md +3 -0
- package/help/commands-docs/iac.md +8 -0
- package/help/commands-man/snyk-auth.1 +1 -1
- package/help/commands-man/snyk-code.1 +1 -1
- package/help/commands-man/snyk-config.1 +10 -1
- package/help/commands-man/snyk-container.1 +1 -1
- package/help/commands-man/snyk-help.1 +1 -1
- package/help/commands-man/snyk-iac.1 +11 -1
- package/help/commands-man/snyk-ignore.1 +1 -1
- package/help/commands-man/snyk-monitor.1 +1 -1
- package/help/commands-man/snyk-policy.1 +1 -1
- package/help/commands-man/snyk-protect.1 +1 -1
- package/help/commands-man/snyk-test.1 +1 -1
- package/help/commands-man/snyk-wizard.1 +1 -1
- package/help/commands-man/snyk-woof.1 +1 -1
- package/help/commands-man/snyk.1 +10 -1
- package/help/commands-md/snyk-config.md +9 -0
- package/help/commands-md/snyk-iac.md +11 -0
- package/help/commands-md/snyk.md +9 -0
- package/help/commands-txt/snyk-auth.txt +58 -58
- package/help/commands-txt/snyk-code.txt +65 -65
- package/help/commands-txt/snyk-config.txt +86 -74
- package/help/commands-txt/snyk-container.txt +74 -74
- package/help/commands-txt/snyk-help.txt +52 -52
- package/help/commands-txt/snyk-iac.txt +109 -95
- package/help/commands-txt/snyk-ignore.txt +72 -72
- package/help/commands-txt/snyk-monitor.txt +199 -199
- package/help/commands-txt/snyk-policy.txt +53 -53
- package/help/commands-txt/snyk-protect.txt +53 -53
- package/help/commands-txt/snyk-test.txt +199 -199
- package/help/commands-txt/snyk-wizard.txt +54 -54
- package/help/commands-txt/snyk-woof.txt +53 -53
- package/help/commands-txt/snyk.txt +236 -222
- package/package.json +2 -2
- package/dist/cli/200.index.js +0 -1543
- package/dist/cli/200.index.js.map +0 -1
- package/dist/cli/708.index.js +0 -559
- package/dist/cli/708.index.js.map +0 -1
- package/dist/cli/784.index.js.map +0 -1
package/dist/cli/741.index.js
CHANGED
|
@@ -318,29 +318,6 @@ async function validateFixCommandIsSupported(options) {
|
|
|
318
318
|
exports.validateFixCommandIsSupported = validateFixCommandIsSupported;
|
|
319
319
|
|
|
320
320
|
|
|
321
|
-
/***/ }),
|
|
322
|
-
|
|
323
|
-
/***/ 52369:
|
|
324
|
-
/***/ ((__unused_webpack_module, exports) => {
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
328
|
-
exports.processCommandArgs = void 0;
|
|
329
|
-
function processCommandArgs(...args) {
|
|
330
|
-
let options = {};
|
|
331
|
-
if (typeof args[args.length - 1] === 'object') {
|
|
332
|
-
options = args.pop();
|
|
333
|
-
}
|
|
334
|
-
args = args.filter(Boolean);
|
|
335
|
-
// For repository scanning, populate with default path (cwd) if no path given
|
|
336
|
-
if (args.length === 0 && !options.docker) {
|
|
337
|
-
args.unshift(process.cwd());
|
|
338
|
-
}
|
|
339
|
-
return { options, paths: args };
|
|
340
|
-
}
|
|
341
|
-
exports.processCommandArgs = processCommandArgs;
|
|
342
|
-
|
|
343
|
-
|
|
344
321
|
/***/ }),
|
|
345
322
|
|
|
346
323
|
/***/ 68214:
|