@base44-preview/cli 0.0.4-pr.46.9a6c2aa → 0.0.4-pr.52.66b2e1d

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.
Files changed (29) hide show
  1. package/bin/dev.cmd +2 -0
  2. package/bin/dev.js +12 -0
  3. package/bin/run.cmd +2 -0
  4. package/bin/run.js +11 -0
  5. package/dist/{cli/index.js → index.js} +9918 -20172
  6. package/dist/{cli/templates/backend-and-client/base44/env.local.ejs → templates/backend-only/base44/.env.local.ejs} +0 -3
  7. package/package.json +31 -11
  8. package/dist/cli/templates/backend-and-client/.nvmrc +0 -1
  9. package/dist/cli/templates/backend-only/base44/env.local.ejs +0 -9
  10. /package/dist/{cli/templates → templates}/backend-and-client/README.md +0 -0
  11. /package/dist/{cli/templates → templates}/backend-and-client/base44/config.jsonc.ejs +0 -0
  12. /package/dist/{cli/templates → templates}/backend-and-client/base44/entities/task.jsonc +0 -0
  13. /package/dist/{cli/templates → templates}/backend-and-client/components.json +0 -0
  14. /package/dist/{cli/templates → templates}/backend-and-client/index.html +0 -0
  15. /package/dist/{cli/templates → templates}/backend-and-client/jsconfig.json +0 -0
  16. /package/dist/{cli/templates → templates}/backend-and-client/package.json +0 -0
  17. /package/dist/{cli/templates → templates}/backend-and-client/postcss.config.js +0 -0
  18. /package/dist/{cli/templates → templates}/backend-and-client/src/App.jsx +0 -0
  19. /package/dist/{cli/templates → templates}/backend-and-client/src/api/base44Client.js.ejs +0 -0
  20. /package/dist/{cli/templates → templates}/backend-and-client/src/components/Base44Logo.jsx +0 -0
  21. /package/dist/{cli/templates → templates}/backend-and-client/src/components/ui/button.jsx +0 -0
  22. /package/dist/{cli/templates → templates}/backend-and-client/src/components/ui/checkbox.jsx +0 -0
  23. /package/dist/{cli/templates → templates}/backend-and-client/src/components/ui/input.jsx +0 -0
  24. /package/dist/{cli/templates → templates}/backend-and-client/src/index.css +0 -0
  25. /package/dist/{cli/templates → templates}/backend-and-client/src/main.jsx +0 -0
  26. /package/dist/{cli/templates → templates}/backend-and-client/tailwind.config.js +0 -0
  27. /package/dist/{cli/templates → templates}/backend-and-client/vite.config.js +0 -0
  28. /package/dist/{cli/templates → templates}/backend-only/base44/config.jsonc.ejs +0 -0
  29. /package/dist/{cli/templates → templates}/templates.json +0 -0
package/bin/dev.cmd ADDED
@@ -0,0 +1,2 @@
1
+ @echo off
2
+ npx tsx "%~dp0\dev.js" %*
package/bin/dev.js ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env tsx
2
+ import { execute } from "@oclif/core";
3
+ import { fileURLToPath } from "node:url";
4
+ import { dirname, resolve } from "node:path";
5
+
6
+ const __filename = fileURLToPath(import.meta.url);
7
+ const __dirname = dirname(__filename);
8
+
9
+ await execute({
10
+ development: true,
11
+ dir: resolve(__dirname, ".."),
12
+ });
package/bin/run.cmd ADDED
@@ -0,0 +1,2 @@
1
+ @echo off
2
+ node "%~dp0\run.js" %*
package/bin/run.js ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env node
2
+ import { execute } from "@oclif/core";
3
+ import { fileURLToPath } from "node:url";
4
+ import { dirname, resolve } from "node:path";
5
+
6
+ const __filename = fileURLToPath(import.meta.url);
7
+ const __dirname = dirname(__filename);
8
+
9
+ await execute({
10
+ dir: resolve(__dirname, ".."),
11
+ });