@vibgrate/cli 2026.617.1 → 2026.618.2
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
baselineCommand,
|
|
3
3
|
runBaseline
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import "./chunk-
|
|
4
|
+
} from "./chunk-34KD4UJ3.js";
|
|
5
|
+
import "./chunk-XKZBEQYY.js";
|
|
6
6
|
import "./chunk-5IXVOEZN.js";
|
|
7
7
|
import "./chunk-C7LU6YIL.js";
|
|
8
8
|
import "./chunk-JSBRDJBE.js";
|
|
@@ -18815,7 +18815,7 @@ async function runScan(rootDir, opts) {
|
|
|
18815
18815
|
if (extended.assetBranding) filesScanned += extended.assetBranding.faviconFiles.length + extended.assetBranding.productLogos.length;
|
|
18816
18816
|
if (extended.ossGovernance) filesScanned += extended.ossGovernance.directDependencies;
|
|
18817
18817
|
const durationMs = Date.now() - scanStart;
|
|
18818
|
-
const repository = await buildRepositoryInfo(rootDir, vcs.remoteUrl, extended.buildDeploy?.ci);
|
|
18818
|
+
const repository = await buildRepositoryInfo(rootDir, vcs.remoteUrl, extended.buildDeploy?.ci, opts.repositoryName);
|
|
18819
18819
|
const artifact = {
|
|
18820
18820
|
schemaVersion: "1.0",
|
|
18821
18821
|
timestamp: (/* @__PURE__ */ new Date()).toISOString(),
|
|
@@ -18926,8 +18926,8 @@ async function runScan(rootDir, opts) {
|
|
|
18926
18926
|
}
|
|
18927
18927
|
return artifact;
|
|
18928
18928
|
}
|
|
18929
|
-
async function buildRepositoryInfo(rootDir, remoteUrl, ciSystems) {
|
|
18930
|
-
const name = await resolveRepositoryName(rootDir);
|
|
18929
|
+
async function buildRepositoryInfo(rootDir, remoteUrl, ciSystems, nameOverride) {
|
|
18930
|
+
const name = nameOverride?.trim() ? nameOverride.trim() : await resolveRepositoryName(rootDir);
|
|
18931
18931
|
let version;
|
|
18932
18932
|
const packageJsonPath = path34.join(rootDir, "package.json");
|
|
18933
18933
|
if (await pathExists(packageJsonPath)) {
|