@baseplate-dev/project-builder-cli 0.1.1 → 0.1.2
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 +25 -0
- package/package.json +9 -9
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# @baseplate-dev/project-builder-cli
|
|
2
|
+
|
|
3
|
+
This package provides the command-line interface (CLI) for Baseplate's project builder. It starts the server and web interface, enabling users to configure and manage their Baseplate projects.
|
|
4
|
+
|
|
5
|
+
## Purpose
|
|
6
|
+
|
|
7
|
+
The project-builder-cli serves as the entry point for the Baseplate project builder. When users run `pnpm baseplate serve`, this CLI:
|
|
8
|
+
|
|
9
|
+
- Starts the Fastify-based backend server (project-builder-server)
|
|
10
|
+
- Launches the React web interface (project-builder-web)
|
|
11
|
+
- Manages the communication between the UI and server components
|
|
12
|
+
- Handles project synchronization and code generation
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
This package is typically installed as part of a Baseplate project and provides the `baseplate` command:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pnpm baseplate serve # Start the project builder UI
|
|
20
|
+
pnpm baseplate generate # Run code generation
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Part of Baseplate Monorepo
|
|
24
|
+
|
|
25
|
+
This package is part of the Baseplate monorepo and works in conjunction with other packages in the ecosystem.
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baseplate-dev/project-builder-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Full-stack CLI builder using Baseplate generators",
|
|
5
|
-
"homepage": "https://www.
|
|
5
|
+
"homepage": "https://www.baseplate.dev",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/halfdomelabs/baseplate",
|
|
9
9
|
"directory": "packages/project-builder-cli"
|
|
10
10
|
},
|
|
11
|
-
"license": "
|
|
11
|
+
"license": "MPL-2.0",
|
|
12
12
|
"author": "Half Dome Labs LLC",
|
|
13
13
|
"type": "module",
|
|
14
14
|
"imports": {
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"pino-pretty": "13.0.0",
|
|
34
34
|
"pkg-dir": "^8.0.0",
|
|
35
35
|
"zod": "3.24.1",
|
|
36
|
-
"@baseplate-dev/project-builder-common": "0.1.
|
|
37
|
-
"@baseplate-dev/project-builder-lib": "0.1.
|
|
38
|
-
"@baseplate-dev/project-builder-server": "0.1.
|
|
39
|
-
"@baseplate-dev/project-builder-web": "0.1.
|
|
40
|
-
"@baseplate-dev/utils": "0.1.
|
|
36
|
+
"@baseplate-dev/project-builder-common": "0.1.2",
|
|
37
|
+
"@baseplate-dev/project-builder-lib": "0.1.2",
|
|
38
|
+
"@baseplate-dev/project-builder-server": "0.1.2",
|
|
39
|
+
"@baseplate-dev/project-builder-web": "0.1.2",
|
|
40
|
+
"@baseplate-dev/utils": "0.1.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@playwright/test": "1.51.0",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"tsx": "4.19.3",
|
|
50
50
|
"typescript": "5.7.3",
|
|
51
51
|
"vitest": "3.0.7",
|
|
52
|
-
"@baseplate-dev/tools": "0.1.
|
|
52
|
+
"@baseplate-dev/tools": "0.1.2"
|
|
53
53
|
},
|
|
54
54
|
"engines": {
|
|
55
55
|
"node": "^22.0.0"
|