@base44-preview/cli 0.0.54-pr.538.8d085e6 → 0.0.54-pr.538.d3f8e85
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/index.js +3 -3
- package/dist/cli/index.js.map +8 -8
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -253284,7 +253284,7 @@ function resolveAppId(options) {
|
|
|
253284
253284
|
hints: [
|
|
253285
253285
|
{ message: "Pass it explicitly with --app-id <id>" },
|
|
253286
253286
|
{
|
|
253287
|
-
message: "Or set
|
|
253287
|
+
message: "Or set the BASE44_APP_ID environment variable (e.g. via .env)"
|
|
253288
253288
|
}
|
|
253289
253289
|
]
|
|
253290
253290
|
});
|
|
@@ -253325,7 +253325,7 @@ function getInitCommand() {
|
|
|
253325
253325
|
return new Base44Command("init", {
|
|
253326
253326
|
requireAppConfig: false,
|
|
253327
253327
|
fullBanner: true
|
|
253328
|
-
}).description("Scaffold a local project for an existing Base44 app
|
|
253328
|
+
}).description("Scaffold a local project for an existing Base44 app").addArgument(new Argument("name", "Project name").argOptional()).option("--app-id <id>", "Existing Base44 app ID (defaults to the BASE44_APP_ID environment variable)").option("--no-skills", "Skip AI agent skills installation").addHelpText("after", `
|
|
253329
253329
|
Examples:
|
|
253330
253330
|
$ base44 init Scaffolds the current dir for $BASE44_APP_ID
|
|
253331
253331
|
$ base44 init --app-id app_123 Scaffolds the current dir for the given app
|
|
@@ -261756,4 +261756,4 @@ export {
|
|
|
261756
261756
|
CLIExitError
|
|
261757
261757
|
};
|
|
261758
261758
|
|
|
261759
|
-
//# debugId=
|
|
261759
|
+
//# debugId=C68C0B89C60CF11E64756E2164756E21
|