@seamapi/cli 0.28.0 → 0.29.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 +44 -6
- package/lib/version.d.ts +2 -2
- package/lib/version.js +2 -2
- package/package.json +3 -3
- package/src/lib/version.ts +2 -2
package/README.md
CHANGED
|
@@ -15,27 +15,65 @@ prompted for, with suggestions pulled from your workspace. Pass
|
|
|
15
15
|
|
|
16
16
|
## Installation
|
|
17
17
|
|
|
18
|
+
If you use Zsh, the completions only work if you enable compinit in your .zshrc with
|
|
19
|
+
|
|
20
|
+
```sh
|
|
21
|
+
autoload -Uz compinit
|
|
22
|
+
compinit
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### npm
|
|
26
|
+
|
|
18
27
|
Install the CLI globally using [npm] with
|
|
19
28
|
|
|
20
29
|
```
|
|
21
30
|
$ npm install --global @seamapi/cli
|
|
31
|
+
$ seam completion --install
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### Homebrew
|
|
35
|
+
|
|
36
|
+
Install the CLI from [Homebrew] with
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
$ brew install --cask seamapi/tap/seam-cli
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
The Seam CLI may also be installed from Homebrew Core,
|
|
43
|
+
but it does not include the Seam Wizard.
|
|
44
|
+
|
|
45
|
+
```
|
|
46
|
+
$ brew install seam
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### Standalone binary
|
|
50
|
+
|
|
51
|
+
Download a standalone binary for your platform from the [latest GitHub
|
|
52
|
+
release]. The macOS binaries are signed with the Seam Labs, Inc. Apple
|
|
53
|
+
Developer ID and notarized by Apple, so macOS runs them without a Gatekeeper
|
|
54
|
+
prompt.
|
|
55
|
+
|
|
56
|
+
Then install the shell completions with
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
$ seam completion --install
|
|
22
60
|
```
|
|
23
61
|
|
|
24
|
-
|
|
25
|
-
[latest GitHub release]. The macOS binaries are signed with the Seam Labs, Inc.
|
|
26
|
-
Apple Developer ID and notarized by Apple, so macOS runs them without
|
|
27
|
-
a Gatekeeper prompt.
|
|
62
|
+
### Arch Linux
|
|
28
63
|
|
|
29
|
-
|
|
64
|
+
Install the [`seam-bin`][aur] package from the AUR with
|
|
30
65
|
|
|
31
66
|
```
|
|
32
|
-
$
|
|
67
|
+
$ git clone https://aur.archlinux.org/seam-bin.git
|
|
68
|
+
$ cd seam-bin
|
|
69
|
+
$ makepkg -si
|
|
33
70
|
```
|
|
34
71
|
|
|
35
72
|
The AUR and Homebrew packages install [shell completion] themselves. After an
|
|
36
73
|
npm or manual install, run `seam completion --install`.
|
|
37
74
|
|
|
38
75
|
[aur]: https://aur.archlinux.org/packages/seam-bin
|
|
76
|
+
[Homebrew]: https://formulae.brew.sh/cask/seam
|
|
39
77
|
[latest GitHub release]: https://github.com/seamapi/cli/releases/latest
|
|
40
78
|
[npm]: https://www.npmjs.com/
|
|
41
79
|
[Seam Wizard]: https://github.com/seamapi/wizard
|
package/lib/version.d.ts
CHANGED
package/lib/version.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Versions are replaced with generated values when the package is packed.
|
|
2
|
-
const seamapiCliVersion = '0.
|
|
3
|
-
const seamapiBlueprintVersion = '1.
|
|
2
|
+
const seamapiCliVersion = '0.29.0';
|
|
3
|
+
const seamapiBlueprintVersion = '1.8.0';
|
|
4
4
|
export { seamapiBlueprintVersion };
|
|
5
5
|
export default seamapiCliVersion;
|
|
6
6
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seamapi/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.29.0",
|
|
4
4
|
"description": "A command-line interface (CLI) for interacting with the Seam API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -91,8 +91,8 @@
|
|
|
91
91
|
},
|
|
92
92
|
"dependencies": {
|
|
93
93
|
"@clack/prompts": "^1.7.0",
|
|
94
|
-
"@seamapi/blueprint": "1.
|
|
95
|
-
"@seamapi/http": "2.
|
|
94
|
+
"@seamapi/blueprint": "1.8.0",
|
|
95
|
+
"@seamapi/http": "^2.16.0",
|
|
96
96
|
"chalk": "^6.0.0",
|
|
97
97
|
"command-line-usage": "^7.0.4",
|
|
98
98
|
"configstore": "^8.0.0",
|
package/src/lib/version.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Versions are replaced with generated values when the package is packed.
|
|
2
|
-
const seamapiCliVersion = '0.
|
|
3
|
-
const seamapiBlueprintVersion = '1.
|
|
2
|
+
const seamapiCliVersion = '0.29.0'
|
|
3
|
+
const seamapiBlueprintVersion = '1.8.0'
|
|
4
4
|
|
|
5
5
|
export { seamapiBlueprintVersion }
|
|
6
6
|
export default seamapiCliVersion
|