base44 0.0.15 → 0.0.17
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 +31 -12
- package/dist/cli/index.js +7706 -7898
- package/dist/cli/templates/backend-and-client/base44/app.jsonc.ejs +9 -0
- package/dist/cli/templates/backend-only/base44/app.jsonc.ejs +9 -0
- package/package.json +2 -3
- package/dist/cli/templates/backend-and-client/base44/env.local.ejs +0 -9
- package/dist/cli/templates/backend-only/base44/env.local.ejs +0 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "base44",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17",
|
|
4
4
|
"description": "Base44 CLI - Unified interface for managing Base44 applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cli/index.js",
|
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"@typescript-eslint/parser": "^8.51.0",
|
|
44
44
|
"chalk": "^5.6.2",
|
|
45
45
|
"commander": "^12.1.0",
|
|
46
|
-
"dotenv": "^17.2.3",
|
|
47
46
|
"ejs": "^3.1.10",
|
|
48
47
|
"eslint": "^9.39.2",
|
|
49
48
|
"eslint-plugin-import": "^2.32.0",
|
|
@@ -55,7 +54,7 @@
|
|
|
55
54
|
"ky": "^1.14.2",
|
|
56
55
|
"lodash.kebabcase": "^4.1.1",
|
|
57
56
|
"p-wait-for": "^6.0.0",
|
|
58
|
-
"tar": "^7.5.
|
|
57
|
+
"tar": "^7.5.4",
|
|
59
58
|
"tsdown": "^0.12.4",
|
|
60
59
|
"tsx": "^4.19.2",
|
|
61
60
|
"typescript": "^5.7.2",
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
outputFileName: .env.local
|
|
3
|
-
---
|
|
4
|
-
# Base44 Project Environment Variables
|
|
5
|
-
# This file contains environment-specific configuration for your Base44 project.
|
|
6
|
-
# Do not commit this file to version control if it contains sensitive data.
|
|
7
|
-
|
|
8
|
-
# Your Base44 Application ID
|
|
9
|
-
BASE44_CLIENT_ID=<%= projectId %>
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
outputFileName: .env.local
|
|
3
|
-
---
|
|
4
|
-
# Base44 Project Environment Variables
|
|
5
|
-
# This file contains environment-specific configuration for your Base44 project.
|
|
6
|
-
# Do not commit this file to version control if it contains sensitive data.
|
|
7
|
-
|
|
8
|
-
# Your Base44 Application ID
|
|
9
|
-
BASE44_CLIENT_ID=<%= projectId %>
|