create-better-t-stack 3.2.0 → 3.2.1
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 +1 -1
- package/dist/index.js +1 -1
- package/dist/{src-JAo0_3IZ.js → src-DaKmcEvQ.js} +2 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -6668,9 +6668,9 @@ function getWranglerDeployInstructions(runCmd, webDeploy, serverDeploy, backend)
|
|
|
6668
6668
|
const instructions = [];
|
|
6669
6669
|
if (webDeploy === "wrangler") {
|
|
6670
6670
|
const deployPath = backend === "self" ? "apps/web" : "apps/web";
|
|
6671
|
-
instructions.push(`${pc.bold("Deploy web to Cloudflare Workers:")}\n${pc.cyan("•")} Deploy: ${`cd ${deployPath} && ${runCmd}
|
|
6671
|
+
instructions.push(`${pc.bold("Deploy web to Cloudflare Workers:")}\n${pc.cyan("•")} Deploy: ${`cd ${deployPath} && ${runCmd} deploy`}`);
|
|
6672
6672
|
}
|
|
6673
|
-
if (serverDeploy === "wrangler" && backend !== "self") instructions.push(`${pc.bold("Deploy server to Cloudflare Workers:")}\n${pc.cyan("•")} Deploy: ${`cd apps/server && ${runCmd}
|
|
6673
|
+
if (serverDeploy === "wrangler" && backend !== "self") instructions.push(`${pc.bold("Deploy server to Cloudflare Workers:")}\n${pc.cyan("•")} Deploy: ${`cd apps/server && ${runCmd} deploy`}`);
|
|
6674
6674
|
return instructions.length ? `\n${instructions.join("\n")}` : "";
|
|
6675
6675
|
}
|
|
6676
6676
|
function getClerkInstructions() {
|
package/package.json
CHANGED