@vibgrate/cli 1.0.63 → 1.0.64
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.
|
@@ -1401,10 +1401,10 @@ function buildNpmViewChunks(pkgs, platform = process.platform) {
|
|
|
1401
1401
|
}
|
|
1402
1402
|
async function npmViewJson(args, cwd) {
|
|
1403
1403
|
return new Promise((resolve10, reject) => {
|
|
1404
|
-
const
|
|
1405
|
-
const child = spawn2(npmCommand, ["view", ...args, "--json"], {
|
|
1404
|
+
const child = spawn2("npm", ["view", ...args, "--json"], {
|
|
1406
1405
|
cwd,
|
|
1407
|
-
stdio: ["ignore", "pipe", "pipe"]
|
|
1406
|
+
stdio: ["ignore", "pipe", "pipe"],
|
|
1407
|
+
shell: true
|
|
1408
1408
|
});
|
|
1409
1409
|
let out = "";
|
|
1410
1410
|
let err = "";
|
package/dist/cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
baselineCommand
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-GCMUJKM7.js";
|
|
5
5
|
import {
|
|
6
6
|
VERSION,
|
|
7
7
|
dsnCommand,
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
pushCommand,
|
|
11
11
|
scanCommand,
|
|
12
12
|
writeDefaultConfig
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-IQ4T2HLG.js";
|
|
14
14
|
import {
|
|
15
15
|
ensureDir,
|
|
16
16
|
pathExists,
|
|
@@ -39,7 +39,7 @@ var initCommand = new Command("init").description("Initialize vibgrate in a proj
|
|
|
39
39
|
console.log(chalk.green("\u2714") + ` Created ${chalk.bold("vibgrate.config.ts")}`);
|
|
40
40
|
}
|
|
41
41
|
if (opts.baseline) {
|
|
42
|
-
const { runBaseline } = await import("./baseline-
|
|
42
|
+
const { runBaseline } = await import("./baseline-HGBNL6CN.js");
|
|
43
43
|
await runBaseline(rootDir);
|
|
44
44
|
}
|
|
45
45
|
console.log("");
|
package/dist/index.js
CHANGED