base44 0.0.25 → 0.0.26
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 +1 -1
- package/bin/dev.js +3 -12
- package/bin/run.js +3 -12
- package/dist/index.js +22909 -17187
- package/dist/templates/backend-and-client/base44/agents/task_manager.jsonc +11 -0
- package/package.json +13 -4
package/README.md
CHANGED
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();
|