@base44-preview/cli 0.0.1-pr.8.d47bf8e → 0.0.1-pr.9.9888a05

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 (2) hide show
  1. package/README.md +1 -28
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -33,6 +33,7 @@ npm run clean
33
33
 
34
34
  # Lint the code
35
35
  npm run lint
36
+
36
37
  ```
37
38
 
38
39
  ## Commands
@@ -46,31 +47,3 @@ npm run lint
46
47
  ### Project
47
48
 
48
49
  - `base44 show-project` - Display project configuration, entities, and functions
49
-
50
- ## Project Structure
51
-
52
- ```
53
- cli/
54
- ├── src/
55
- │ ├── core/ # Core module (shared code)
56
- │ │ ├── api/ # API client code
57
- │ │ ├── config/ # Configuration management
58
- │ │ ├── errors/ # Custom error classes
59
- │ │ ├── schemas/ # Zod schemas
60
- │ │ ├── utils/ # Utility functions
61
- │ │ └── index.ts # Core module exports
62
- │ └── cli/ # CLI module (main CLI)
63
- │ ├── commands/ # Command implementations
64
- │ │ ├── auth/ # Authentication commands
65
- │ │ └── project/ # Project commands
66
- │ ├── utils/ # CLI-specific utilities
67
- │ └── index.ts # Main CLI entry point
68
- ├── dist/ # Build output (compiled JavaScript)
69
- ├── package.json # Package configuration
70
- ├── tsconfig.json # TypeScript configuration
71
- └── README.md
72
- ```
73
-
74
- ## License
75
-
76
- ISC
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base44-preview/cli",
3
- "version": "0.0.1-pr.8.d47bf8e",
3
+ "version": "0.0.1-pr.9.9888a05",
4
4
  "description": "Base44 CLI - Unified interface for managing Base44 applications",
5
5
  "type": "module",
6
6
  "main": "./dist/cli/index.js",