@fugood/bricks-cli 2.25.0-beta.4 → 2.25.0-beta.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 +13 -0
- package/lib/10.js +1 -0
- package/lib/117.js +2543 -0
- package/lib/166.js +1 -0
- package/lib/178.js +1 -0
- package/lib/3.js +1 -0
- package/lib/456.js +1 -0
- package/lib/511.js +1 -0
- package/lib/587.js +7 -0
- package/lib/602.js +3 -0
- package/lib/647.js +30 -0
- package/lib/940.js +1 -0
- package/lib/index.js +535 -305
- package/package.json +6 -5
- package/lib/300.js +0 -1
- package/lib/356.js +0 -1
- package/lib/425.js +0 -1
- package/lib/428.js +0 -7
- package/lib/465.js +0 -1
- package/lib/63.js +0 -1
- package/lib/737.js +0 -2452
- package/lib/779.js +0 -1
- package/lib/890.js +0 -1
- package/lib/999.js +0 -1
package/README.md
CHANGED
|
@@ -105,6 +105,19 @@ bricks doctor
|
|
|
105
105
|
bricks doctor --json
|
|
106
106
|
```
|
|
107
107
|
|
|
108
|
+
### Self-update
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
# Update the CLI in-place. Auto-detects how it was installed (npm, bun,
|
|
112
|
+
# standalone binary) and runs the matching update command. Falls back to
|
|
113
|
+
# the binary installer if the primary method fails.
|
|
114
|
+
bricks update-cli # prompts before updating
|
|
115
|
+
bricks update-cli -y # non-interactive
|
|
116
|
+
|
|
117
|
+
# Force a channel
|
|
118
|
+
bricks update-cli --channel beta
|
|
119
|
+
```
|
|
120
|
+
|
|
108
121
|
### Configuration
|
|
109
122
|
|
|
110
123
|
```bash
|