logbrew-cli 0.1.10 → 0.1.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 +13 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -15,6 +15,15 @@ npm install -g logbrew-cli
|
|
|
15
15
|
brew install LogBrewCo/tap/logbrew
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
+
Or install the native GitHub Release artifact directly:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/LogBrewCo/cli/releases/latest/download/logbrew-cli-installer.sh | sh
|
|
22
|
+
powershell -ExecutionPolicy Bypass -c "irm https://github.com/LogBrewCo/cli/releases/latest/download/logbrew-cli-installer.ps1 | iex"
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Windows users can also download the latest MSI from the GitHub Release assets.
|
|
26
|
+
|
|
18
27
|
Cargo installs and source builds require Rust 1.87 or newer. The npm,
|
|
19
28
|
Homebrew, shell, PowerShell, and MSI installers use native release artifacts and
|
|
20
29
|
do not require a local Rust toolchain.
|
|
@@ -64,6 +73,7 @@ release/tag collisions.
|
|
|
64
73
|
## Basic Usage
|
|
65
74
|
|
|
66
75
|
```bash
|
|
76
|
+
logbrew examples
|
|
67
77
|
logbrew status
|
|
68
78
|
logbrew login
|
|
69
79
|
logbrew logs --release checkout@1 --environment production
|
|
@@ -73,6 +83,9 @@ logbrew watch --json
|
|
|
73
83
|
logbrew watch --severity error,critical --json
|
|
74
84
|
```
|
|
75
85
|
|
|
86
|
+
Run `logbrew examples` for a compact first-run, troubleshooting, live watch, and
|
|
87
|
+
agent JSON workflow guide.
|
|
88
|
+
|
|
76
89
|
The default API URL is `https://api.logbrew.co`. Override it with
|
|
77
90
|
`LOGBREW_API_URL` when testing against another LogBrew API.
|
|
78
91
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"hasInstallScript": true,
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"name": "logbrew-cli",
|
|
22
|
-
"version": "0.1.
|
|
22
|
+
"version": "0.1.12"
|
|
23
23
|
},
|
|
24
24
|
"node_modules/detect-libc": {
|
|
25
25
|
"engines": {
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
"requires": true,
|
|
51
|
-
"version": "0.1.
|
|
51
|
+
"version": "0.1.12"
|
|
52
52
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"artifactDownloadUrls": [
|
|
3
|
-
"https://github.com/LogBrewCo/cli/releases/download/v0.1.
|
|
3
|
+
"https://github.com/LogBrewCo/cli/releases/download/v0.1.12"
|
|
4
4
|
],
|
|
5
5
|
"author": "LogBrewCo",
|
|
6
6
|
"bin": {
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"zipExt": ".tar.xz"
|
|
91
91
|
}
|
|
92
92
|
},
|
|
93
|
-
"version": "0.1.
|
|
93
|
+
"version": "0.1.12",
|
|
94
94
|
"volta": {
|
|
95
95
|
"node": "18.14.1",
|
|
96
96
|
"npm": "9.5.0"
|