snyk 1.990.0 → 1.991.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/784.index.js +3 -3
- package/dist/cli/784.index.js.map +1 -1
- package/dist/cli/917.index.js +40 -12
- package/dist/cli/917.index.js.map +1 -1
- package/dist/cli/commands/test/iac/index.d.ts +2 -2
- package/dist/cli/commands/test/iac/local-execution/index.d.ts +2 -1
- package/dist/cli/commands/test/iac/output.d.ts +13 -3
- package/dist/cli/commands/test/iac/scan.d.ts +1 -1
- package/dist/cli/commands/test/iac/v2/index.d.ts +2 -2
- package/dist/lib/formatters/iac-output/v2/share-results.d.ts +1 -2
- package/dist/lib/iac/test/v2/types.d.ts +2 -2
- package/package.json +1 -1
package/dist/cli/784.index.js
CHANGED
|
@@ -2432,17 +2432,17 @@ exports.shareCustomRulesDisclaimer = exports.shareResultsTip = exports.formatSha
|
|
|
2432
2432
|
const config_1 = __webpack_require__(25425);
|
|
2433
2433
|
const os_1 = __webpack_require__(12087);
|
|
2434
2434
|
const utils_1 = __webpack_require__(67533);
|
|
2435
|
-
function formatShareResultsOutput(
|
|
2435
|
+
function formatShareResultsOutput(orgName, projectName) {
|
|
2436
2436
|
return (utils_1.colors.title('Report Complete') +
|
|
2437
2437
|
os_1.EOL +
|
|
2438
2438
|
os_1.EOL +
|
|
2439
2439
|
utils_1.contentPadding +
|
|
2440
2440
|
'Your test results are available at: ' +
|
|
2441
|
-
utils_1.colors.title(`${config_1.default.ROOT}/org/${
|
|
2441
|
+
utils_1.colors.title(`${config_1.default.ROOT}/org/${orgName}/projects`) +
|
|
2442
2442
|
os_1.EOL +
|
|
2443
2443
|
utils_1.contentPadding +
|
|
2444
2444
|
'under the name: ' +
|
|
2445
|
-
utils_1.colors.title(
|
|
2445
|
+
utils_1.colors.title(projectName));
|
|
2446
2446
|
}
|
|
2447
2447
|
exports.formatShareResultsOutput = formatShareResultsOutput;
|
|
2448
2448
|
exports.shareResultsTip = utils_1.colors.title('Tip') +
|