@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 ?? true) try {
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", "Add AI agent skills").hook("preAction", validateNonInteractiveFlags$1).action(async (name$1, options) => {
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.23";
39228
+ var version = "0.0.24";
39229
39229
 
39230
39230
  //#endregion
39231
39231
  //#region src/cli/program.ts
@@ -0,0 +1,22 @@
1
+ ---
2
+ outputFileName: .gitignore
3
+ ---
4
+ # Dependencies
5
+ node_modules
6
+
7
+ # Build
8
+ dist
9
+
10
+ # Environment
11
+ .env
12
+ .env.*
13
+ *.local
14
+
15
+ # Editor
16
+ .vscode
17
+ .idea
18
+ .DS_Store
19
+ *.swp
20
+
21
+ # Base44 App Config
22
+ .app.json*
@@ -0,0 +1,10 @@
1
+ ---
2
+ outputFileName: .gitignore
3
+ ---
4
+ # Environment
5
+ .env
6
+ .env.*
7
+ *.local
8
+
9
+ # Base44 App Config
10
+ .app.json*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base44-preview/cli",
3
- "version": "0.0.23-pr.141.d85f749",
3
+ "version": "0.0.24-pr.145.9ad2228",
4
4
  "description": "Base44 CLI - Unified interface for managing Base44 applications",
5
5
  "type": "module",
6
6
  "bin": {