@base44-preview/cli 0.0.25-pr.104.a8520b5 → 0.0.25-pr.135.f06da52
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/README.md +0 -2
- package/bin/dev.js +3 -12
- package/bin/run.js +3 -12
- package/dist/index.js +19538 -15859
- package/dist/templates/backend-and-client/base44/agents/task_manager.jsonc +11 -0
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -53,8 +53,6 @@ The CLI will guide you through project setup. For step-by-step tutorials, see th
|
|
|
53
53
|
| [`entities push`](https://docs.base44.com/developers/references/cli/commands/entities-push) | Push local entity schemas to Base44 |
|
|
54
54
|
| [`functions deploy`](https://docs.base44.com/developers/references/cli/commands/functions-deploy) | Deploy local functions to Base44 |
|
|
55
55
|
| [`site deploy`](https://docs.base44.com/developers/references/cli/commands/site-deploy) | Deploy built site files to Base44 hosting |
|
|
56
|
-
| `connectors add [type]` | Connect an OAuth integration |
|
|
57
|
-
| `connectors remove [type]` | Disconnect an integration |
|
|
58
56
|
|
|
59
57
|
|
|
60
58
|
<!--| [`eject`](https://docs.base44.com/developers/references/cli/commands/eject) | Create a Base44 backend project from an existing Base44 app | -->
|
package/bin/dev.js
CHANGED
|
@@ -1,19 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env tsx
|
|
2
|
+
import { runCLI } from "../src/cli/index.ts";
|
|
2
3
|
|
|
3
4
|
// Disable Clack spinners and animations in non-interactive environments.
|
|
4
5
|
// Clack only checks the CI env var, so we set it when stdin/stdout aren't TTYs.
|
|
5
6
|
if (!process.stdin.isTTY || !process.stdout.isTTY) {
|
|
6
|
-
process.env.CI =
|
|
7
|
+
process.env.CI = "true";
|
|
7
8
|
}
|
|
8
9
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
try {
|
|
12
|
-
await program.parseAsync();
|
|
13
|
-
} catch (error) {
|
|
14
|
-
if (error instanceof CLIExitError) {
|
|
15
|
-
process.exit(error.code);
|
|
16
|
-
}
|
|
17
|
-
console.error(error);
|
|
18
|
-
process.exit(1);
|
|
19
|
-
}
|
|
10
|
+
await runCLI();
|
package/bin/run.js
CHANGED
|
@@ -1,19 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { runCLI } from "../dist/index.js";
|
|
2
3
|
|
|
3
4
|
// Disable Clack spinners and animations in non-interactive environments.
|
|
4
5
|
// Clack only checks the CI env var, so we set it when stdin/stdout aren't TTYs.
|
|
5
6
|
if (!process.stdin.isTTY || !process.stdout.isTTY) {
|
|
6
|
-
process.env.CI =
|
|
7
|
+
process.env.CI = "true";
|
|
7
8
|
}
|
|
8
9
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
try {
|
|
12
|
-
await program.parseAsync();
|
|
13
|
-
} catch (error) {
|
|
14
|
-
if (error instanceof CLIExitError) {
|
|
15
|
-
process.exit(error.code);
|
|
16
|
-
}
|
|
17
|
-
console.error(error);
|
|
18
|
-
process.exit(1);
|
|
19
|
-
}
|
|
10
|
+
await runCLI();
|