@base44-preview/cli 0.0.23-pr.141.d85f749 → 0.0.24-pr.145.9ad2228
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/index.js
CHANGED
|
@@ -38475,7 +38475,7 @@ async function executeCreate({ template, name: rawName, description, projectPath
|
|
|
38475
38475
|
finalAppUrl = appUrl;
|
|
38476
38476
|
}
|
|
38477
38477
|
}
|
|
38478
|
-
if (skills
|
|
38478
|
+
if (skills) try {
|
|
38479
38479
|
await runTask("Installing AI agent skills...", async () => {
|
|
38480
38480
|
await execa("npx", [
|
|
38481
38481
|
"-y",
|
|
@@ -38496,7 +38496,7 @@ async function executeCreate({ template, name: rawName, description, projectPath
|
|
|
38496
38496
|
if (finalAppUrl) M.message(`${theme.styles.header("Site")}: ${theme.colors.links(finalAppUrl)}`);
|
|
38497
38497
|
return { outroMessage: "Your project is set up and ready to use" };
|
|
38498
38498
|
}
|
|
38499
|
-
const createCommand = new Command("create").description("Create a new Base44 project").addArgument(new Argument("name", "Project name").argOptional()).option("-p, --path <path>", "Path where to create the project").option("-t, --template <id>", "Template ID (e.g., backend-only, backend-and-client)").option("--deploy", "Build and deploy the site").option("--skills", "
|
|
38499
|
+
const createCommand = new Command("create").description("Create a new Base44 project").addArgument(new Argument("name", "Project name").argOptional()).option("-p, --path <path>", "Path where to create the project").option("-t, --template <id>", "Template ID (e.g., backend-only, backend-and-client)").option("--deploy", "Build and deploy the site").option("--no-skills", "Skip AI agent skills installation").hook("preAction", validateNonInteractiveFlags$1).action(async (name$1, options) => {
|
|
38500
38500
|
await chooseCreate({
|
|
38501
38501
|
name: name$1,
|
|
38502
38502
|
...options
|
|
@@ -39225,7 +39225,7 @@ const siteDeployCommand = new Command("site").description("Manage site deploymen
|
|
|
39225
39225
|
|
|
39226
39226
|
//#endregion
|
|
39227
39227
|
//#region package.json
|
|
39228
|
-
var version = "0.0.
|
|
39228
|
+
var version = "0.0.24";
|
|
39229
39229
|
|
|
39230
39230
|
//#endregion
|
|
39231
39231
|
//#region src/cli/program.ts
|