wholestack 0.5.4 → 0.5.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 +18 -1
- package/dist/{chunk-FI67ER5S.js → chunk-K6MSDQJT.js} +585 -205
- package/dist/cli.js +153 -117
- package/dist/index.d.ts +8 -5
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ wholestack logout # forget the stored token
|
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
`login` mints a personal access token tied to your account and stores it at
|
|
33
|
-
`~/.
|
|
33
|
+
`~/.wholestack/config.json` (chmod 600). Revoke it anytime from **Account → Security**
|
|
34
34
|
on wholestack.ai.
|
|
35
35
|
|
|
36
36
|
## Common flags
|
|
@@ -43,6 +43,23 @@ on wholestack.ai.
|
|
|
43
43
|
| `-p, --print` | non-interactive, print result and exit |
|
|
44
44
|
| `--zeta-url <url>` | override the engine origin (defaults to https://wholestack.ai) |
|
|
45
45
|
|
|
46
|
+
## Projects — one spine with the web IDE
|
|
47
|
+
|
|
48
|
+
Everything you build (terminal, wholestack.ai/build, /demo) lands in the same
|
|
49
|
+
project list. The terminal can read and write the exact working tree the web
|
|
50
|
+
IDE edits:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
wholestack projects # list your platform projects
|
|
54
|
+
wholestack pull <id> [dir] # download a project's working tree
|
|
55
|
+
wholestack push [dir] # sync local edits back to the web IDE
|
|
56
|
+
wholestack open [buildId] # open a generated build in the web IDE
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
`pull` links the directory via `.wholestack/project.json`, so a later `push`
|
|
60
|
+
(and `open` inside a delivered app) needs no arguments. Pushes skip
|
|
61
|
+
`node_modules`, build output, `.env*` and binaries.
|
|
62
|
+
|
|
46
63
|
## Security verification
|
|
47
64
|
|
|
48
65
|
Run ShipGate's gates on a generated contract:
|