@grove-sh/cli 0.5.0 → 0.6.0
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 +1 -1
- package/bin/grove.js +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ grove install
|
|
|
24
24
|
|
|
25
25
|
This package is a wrapper. It installs the binary for your platform and runs it.
|
|
26
26
|
|
|
27
|
-
`grove install` is a separate step on purpose. It generates a certificate authority and adds it to your trust stores, and it prints the one privileged step your platform needs
|
|
27
|
+
`grove install` is a separate step on purpose. It generates a certificate authority and adds it to your trust stores, and it prints the one privileged step your platform needs, running it only when you say so. Neither belongs in an `npm install` that nobody is watching.
|
|
28
28
|
|
|
29
29
|
## It runs beside your other tools
|
|
30
30
|
|
package/bin/grove.js
CHANGED
|
@@ -65,7 +65,7 @@ function locate() {
|
|
|
65
65
|
|
|
66
66
|
const binary = locate();
|
|
67
67
|
|
|
68
|
-
// Inherited stdio, so grove sees the real terminal: it
|
|
68
|
+
// Inherited stdio, so grove sees the real terminal: it colors only for one,
|
|
69
69
|
// and `grove exec` hands the terminal to the command it runs.
|
|
70
70
|
const child = spawn(binary, process.argv.slice(2), { stdio: "inherit" });
|
|
71
71
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grove-sh/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Local HTTPS hostnames, ports, and env vars, scoped per git worktree",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"git-worktree",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
34
|
"optionalDependencies": {
|
|
35
|
-
"@grove-sh/cli-darwin-arm64": "0.
|
|
36
|
-
"@grove-sh/cli-darwin-x64": "0.
|
|
37
|
-
"@grove-sh/cli-linux-arm64": "0.
|
|
38
|
-
"@grove-sh/cli-linux-x64": "0.
|
|
35
|
+
"@grove-sh/cli-darwin-arm64": "0.6.0",
|
|
36
|
+
"@grove-sh/cli-darwin-x64": "0.6.0",
|
|
37
|
+
"@grove-sh/cli-linux-arm64": "0.6.0",
|
|
38
|
+
"@grove-sh/cli-linux-x64": "0.6.0"
|
|
39
39
|
}
|
|
40
40
|
}
|