betterstart-cli 0.0.24 → 0.0.25
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 +2 -2
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -23836,13 +23836,13 @@ import pc3 from "picocolors";
|
|
|
23836
23836
|
|
|
23837
23837
|
// adapters/next/init/vercel/runner.ts
|
|
23838
23838
|
import { spawn as spawn3 } from "child_process";
|
|
23839
|
-
var
|
|
23839
|
+
var VERCEL_CLI_VERSION = "latest";
|
|
23840
23840
|
var DEFAULT_CAPTURE_TIMEOUT_MS = 12e4;
|
|
23841
23841
|
function pathRunner() {
|
|
23842
23842
|
return { bin: "vercel", prefix: [], source: "path" };
|
|
23843
23843
|
}
|
|
23844
23844
|
function npxRunner() {
|
|
23845
|
-
return { bin: "npx", prefix: ["-y", `vercel@${
|
|
23845
|
+
return { bin: "npx", prefix: ["-y", `vercel@${VERCEL_CLI_VERSION}`], source: "npx" };
|
|
23846
23846
|
}
|
|
23847
23847
|
async function resolveVercelRunner() {
|
|
23848
23848
|
const probe = await runVercel(pathRunner(), ["--version"], {
|