@sculptor/cli 0.3.11 → 0.3.12
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 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -19,8 +19,8 @@ It handles:
|
|
|
19
19
|
|
|
20
20
|
## Version Policy
|
|
21
21
|
|
|
22
|
-
- Pre-release line: `v0.3.
|
|
23
|
-
- Current package version: `0.3.
|
|
22
|
+
- Pre-release line: `v0.3.x`
|
|
23
|
+
- Current package version: `0.3.12`
|
|
24
24
|
- This pre-release line adds package-aware generation, functional package scaffolds, `sc doctor`, `sc agents`, `sculptor.packages.json`, and exact package/file alias commands.
|
|
25
25
|
- Expect minor changes and fixes until `v1.0.0`.
|
|
26
26
|
|
|
@@ -130,6 +130,7 @@ Behavior:
|
|
|
130
130
|
- uses `nodemon` when `project.devServer` is `nodemon`
|
|
131
131
|
- uses `tsx` when `project.devServer` is `tsx`
|
|
132
132
|
- refuses to run outside a Sculptor app root
|
|
133
|
+
- prints a clean one-line framework error instead of a raw stack trace when the command is not allowed in the current directory
|
|
133
134
|
- suppresses the runtime banner by setting `SCULPTOR_SUPPRESS_BANNER=1`
|
|
134
135
|
|
|
135
136
|
### `sc start`
|
|
@@ -316,6 +317,8 @@ The CLI only allows certain commands outside a Sculptor app root:
|
|
|
316
317
|
|
|
317
318
|
The runtime commands require `sculptor.json` in the current app root.
|
|
318
319
|
|
|
320
|
+
When a command is rejected by the app-root guard, Sculptor prints a user-facing message only. It does not expose the internal stack trace in normal CLI output.
|
|
321
|
+
|
|
319
322
|
Next:
|
|
320
323
|
|
|
321
324
|
- [packages/core/README.md](../core/README.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sculptor/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"sc": "./bin/sc.js",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
},
|
|
37
37
|
"license": "MIT",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@sculptor/config": "^0.3.
|
|
40
|
-
"@sculptor/core": "^0.3.
|
|
41
|
-
"@sculptor/template-registry": "^0.3.
|
|
39
|
+
"@sculptor/config": "^0.3.11",
|
|
40
|
+
"@sculptor/core": "^0.3.11",
|
|
41
|
+
"@sculptor/template-registry": "^0.3.11",
|
|
42
42
|
"typescript": "^5.8.3",
|
|
43
43
|
"tsx": "^4.19.4"
|
|
44
44
|
}
|