@waelio/cli 0.1.3 → 0.1.6
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 +5 -1
- package/package.json +14 -4
package/README.md
CHANGED
|
@@ -95,12 +95,16 @@ waelio build --repo https://github.com/yourname/siteforge.git
|
|
|
95
95
|
|
|
96
96
|
### `waelio ui`
|
|
97
97
|
|
|
98
|
-
Start the local web UI and API server (browser dashboard with live build logs):
|
|
98
|
+
Start the local web UI and API server (browser dashboard with live build logs and a multi-view interface):
|
|
99
99
|
|
|
100
100
|
```sh
|
|
101
101
|
waelio ui
|
|
102
102
|
```
|
|
103
103
|
|
|
104
|
+
**UI Features:**
|
|
105
|
+
- **Scaffold View:** Form-based generator to produce and deploy Siteforge blueprints to webhooks.
|
|
106
|
+
- **Public Sites View:** A dedicated dashboard for listing and accessing successfully scaffolded client sites served via the `/api/public-sites` route.
|
|
107
|
+
|
|
104
108
|
**Options:**
|
|
105
109
|
|
|
106
110
|
```sh
|
package/package.json
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@waelio/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "CLI for building the waelio/siteforge website",
|
|
5
|
+
"author": "Waelio <waelio@waelio.com> (https://waelio.com)",
|
|
6
|
+
"homepage": "https://github.com/waelio/cli#readme",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/waelio/cli.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/waelio/cli/issues"
|
|
13
|
+
},
|
|
5
14
|
"type": "module",
|
|
6
15
|
"bin": {
|
|
7
|
-
"waelio": "
|
|
16
|
+
"waelio": "dist/index.js"
|
|
8
17
|
},
|
|
9
18
|
"files": [
|
|
10
19
|
"dist",
|
|
@@ -39,7 +48,8 @@
|
|
|
39
48
|
"dependencies": {
|
|
40
49
|
"commander": "^14.0.0",
|
|
41
50
|
"socket.io-client": "^4.8.3",
|
|
42
|
-
"vue": "^3.5.13"
|
|
51
|
+
"vue": "^3.5.13",
|
|
52
|
+
"vue-router": "^4.5.0"
|
|
43
53
|
},
|
|
44
54
|
"devDependencies": {
|
|
45
55
|
"@types/node": "^24.0.0",
|
|
@@ -50,4 +60,4 @@
|
|
|
50
60
|
"vite": "^5.4.21",
|
|
51
61
|
"vue-tsc": "^2.2.0"
|
|
52
62
|
}
|
|
53
|
-
}
|
|
63
|
+
}
|