logbrew-cli 0.0.0-bootstrap.0 → 0.1.2
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/.gitignore +2 -0
- package/README.md +7 -8
- package/npm-shrinkwrap.json +2 -2
- package/package.json +9 -6
- package/run-logbrew.js +0 -0
package/.gitignore
ADDED
package/README.md
CHANGED
|
@@ -7,19 +7,18 @@ human output, clear `Next:` recovery steps, and token-safe diagnostics.
|
|
|
7
7
|
|
|
8
8
|
## Install
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
Use one of the published package-manager installs:
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
|
-
cargo install
|
|
13
|
+
cargo install logbrew-cli
|
|
14
|
+
npm install -g logbrew-cli
|
|
15
|
+
brew install LogBrewCo/tap/logbrew
|
|
14
16
|
```
|
|
15
17
|
|
|
16
|
-
|
|
17
|
-
distribution surfaces:
|
|
18
|
+
For development from the public repository:
|
|
18
19
|
|
|
19
20
|
```bash
|
|
20
|
-
cargo install logbrew-cli
|
|
21
|
-
npm install -g logbrew-cli
|
|
22
|
-
brew install LogBrewCo/tap/logbrew
|
|
21
|
+
cargo install --git https://github.com/LogBrewCo/cli logbrew-cli
|
|
23
22
|
```
|
|
24
23
|
|
|
25
24
|
## Distribution
|
|
@@ -44,7 +43,7 @@ publishing requires the GitHub Actions secret `HOMEBREW_TAP_TOKEN`.
|
|
|
44
43
|
Before pushing a release tag, run the release preflight:
|
|
45
44
|
|
|
46
45
|
```bash
|
|
47
|
-
bash scripts/release-preflight.sh
|
|
46
|
+
bash scripts/release-preflight.sh vX.Y.Z
|
|
48
47
|
```
|
|
49
48
|
|
|
50
49
|
The preflight checks the tag/version match, clean synced `main`, public
|
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.
|
|
22
|
+
"version": "0.1.2"
|
|
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.
|
|
51
|
+
"version": "0.1.2"
|
|
52
52
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrls": [
|
|
2
|
+
"artifactDownloadUrls": [
|
|
3
|
+
"https://github.com/LogBrewCo/cli/releases/download/v0.1.2"
|
|
4
|
+
],
|
|
3
5
|
"author": "LogBrewCo",
|
|
4
6
|
"bin": {
|
|
5
7
|
"logbrew": "run-logbrew.js"
|
|
@@ -7,7 +9,7 @@
|
|
|
7
9
|
"dependencies": {
|
|
8
10
|
"detect-libc": "^2.1.2"
|
|
9
11
|
},
|
|
10
|
-
"description": "
|
|
12
|
+
"description": "Public command-line interface for LogBrew.",
|
|
11
13
|
"devDependencies": {
|
|
12
14
|
"prettier": "^3.8.3"
|
|
13
15
|
},
|
|
@@ -17,7 +19,7 @@
|
|
|
17
19
|
},
|
|
18
20
|
"glibcMinimum": {
|
|
19
21
|
"major": 2,
|
|
20
|
-
"series":
|
|
22
|
+
"series": 39
|
|
21
23
|
},
|
|
22
24
|
"homepage": "https://logbrew.co",
|
|
23
25
|
"keywords": [
|
|
@@ -34,7 +36,8 @@
|
|
|
34
36
|
"repository": "https://github.com/LogBrewCo/cli",
|
|
35
37
|
"scripts": {
|
|
36
38
|
"fmt": "prettier --write **/*.js",
|
|
37
|
-
"fmt:check": "prettier --check **/*.js"
|
|
39
|
+
"fmt:check": "prettier --check **/*.js",
|
|
40
|
+
"postinstall": "node ./install.js"
|
|
38
41
|
},
|
|
39
42
|
"supportedPlatforms": {
|
|
40
43
|
"aarch64-apple-darwin": {
|
|
@@ -87,9 +90,9 @@
|
|
|
87
90
|
"zipExt": ".tar.xz"
|
|
88
91
|
}
|
|
89
92
|
},
|
|
90
|
-
"version": "0.
|
|
93
|
+
"version": "0.1.2",
|
|
91
94
|
"volta": {
|
|
92
95
|
"node": "18.14.1",
|
|
93
96
|
"npm": "9.5.0"
|
|
94
97
|
}
|
|
95
|
-
}
|
|
98
|
+
}
|
package/run-logbrew.js
CHANGED
|
File without changes
|