@seamapi/cli 0.31.0 → 0.33.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 +11 -16
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -2
- package/src/lib/version.ts +1 -1
package/README.md
CHANGED
|
@@ -46,6 +46,16 @@ but it does not include the Seam Wizard.
|
|
|
46
46
|
$ brew install seam
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
+
### Scoop
|
|
50
|
+
|
|
51
|
+
On Windows, install the CLI from [Scoop] with
|
|
52
|
+
|
|
53
|
+
```
|
|
54
|
+
> scoop install https://github.com/seamapi/cli/releases/latest/download/seam.json
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
Later, update it with `scoop update seam`.
|
|
58
|
+
|
|
49
59
|
### Standalone binary
|
|
50
60
|
|
|
51
61
|
Install the latest release on Linux and macOS with
|
|
@@ -60,22 +70,6 @@ or on Windows with
|
|
|
60
70
|
> iwr -useb https://raw.githubusercontent.com/seamapi/cli/main/install.ps1 | iex
|
|
61
71
|
```
|
|
62
72
|
|
|
63
|
-
The script downloads the binary for your platform, verifies its SHA-256
|
|
64
|
-
checksum against the release's `checksums.txt` before installing, and runs
|
|
65
|
-
`seam completion --install`. It installs to the first of `$SEAM_BIN_PATH`,
|
|
66
|
-
`$XDG_BIN_HOME`, `$XDG_DATA_HOME/../bin`, or `~/.local/bin`
|
|
67
|
-
(`%LOCALAPPDATA%\seam\bin` on Windows). If the install directory is not on
|
|
68
|
-
your `PATH`, the script adds it to your shell configuration, detecting bash,
|
|
69
|
-
fish, or zsh the same way as `seam completion --install`. Pass
|
|
70
|
-
`--version <tag>` to pin a version, `--bin-path <dir>` to choose the install
|
|
71
|
-
directory, and `--no-modify-path` or `--no-install-completion` to leave your
|
|
72
|
-
shell configuration untouched, e.g.
|
|
73
|
-
|
|
74
|
-
```
|
|
75
|
-
$ curl -fsSL https://raw.githubusercontent.com/seamapi/cli/main/install.sh \
|
|
76
|
-
| sh -s -- --version v0.29.0 --no-install-completion
|
|
77
|
-
```
|
|
78
|
-
|
|
79
73
|
Alternatively, download a standalone binary for your platform from the
|
|
80
74
|
[latest GitHub release]. The macOS binaries are signed with the Seam Labs,
|
|
81
75
|
Inc. Apple Developer ID and notarized by Apple, so macOS runs them without a
|
|
@@ -119,6 +113,7 @@ The flake compiles the standalone binary from source for `x86_64-linux`,
|
|
|
119
113
|
[latest GitHub release]: https://github.com/seamapi/cli/releases/latest
|
|
120
114
|
[Nix]: https://nixos.org/
|
|
121
115
|
[npm]: https://www.npmjs.com/
|
|
116
|
+
[Scoop]: https://scoop.sh/
|
|
122
117
|
[Seam Wizard]: https://github.com/seamapi/wizard
|
|
123
118
|
[shell completion]: #shell-completion
|
|
124
119
|
|
package/lib/version.d.ts
CHANGED
package/lib/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seamapi/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.33.0",
|
|
4
4
|
"description": "A command-line interface (CLI) for interacting with the Seam API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -88,8 +88,9 @@
|
|
|
88
88
|
"onFail": "warn"
|
|
89
89
|
}
|
|
90
90
|
},
|
|
91
|
+
"packageManager": "npm@11.19.0",
|
|
91
92
|
"optionalDependencies": {
|
|
92
|
-
"@seamapi/wizard": "0.
|
|
93
|
+
"@seamapi/wizard": "0.9.2"
|
|
93
94
|
},
|
|
94
95
|
"dependencies": {
|
|
95
96
|
"@clack/prompts": "^1.7.0",
|
package/src/lib/version.ts
CHANGED