@seamapi/cli 0.13.0 → 0.13.1
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/lib/completion/render-fish.js +2 -2
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +6 -4
- package/src/lib/completion/render-fish.ts +2 -2
- package/src/lib/version.ts +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://www.npmjs.com/package/@seamapi/cli)
|
|
6
6
|
[](https://github.com/seamapi/cli/actions/workflows/check.yml)
|
|
7
7
|
|
|
8
|
-
A command
|
|
8
|
+
A command-line interface (CLI) for interacting with the Seam API.
|
|
9
9
|
|
|
10
10
|
## Description
|
|
11
11
|
|
|
@@ -14,7 +14,7 @@ const header = `# fish completion for the seam command.
|
|
|
14
14
|
# Install it with
|
|
15
15
|
#
|
|
16
16
|
# seam completion fish > ~/.config/fish/completions/seam.fish`;
|
|
17
|
-
const helpers = `function __seam_command --description 'Print the seam command path on the command
|
|
17
|
+
const helpers = `function __seam_command --description 'Print the seam command path on the command-line'
|
|
18
18
|
set -l tokens (commandline -opc)
|
|
19
19
|
set -l command
|
|
20
20
|
if test (count $tokens) -gt 1
|
|
@@ -29,7 +29,7 @@ const helpers = `function __seam_command --description 'Print the seam command p
|
|
|
29
29
|
string join ' ' -- $command
|
|
30
30
|
end
|
|
31
31
|
|
|
32
|
-
function __seam_using --description 'Test whether the command
|
|
32
|
+
function __seam_using --description 'Test whether the command-line names the given seam command'
|
|
33
33
|
set -l command (__seam_command)
|
|
34
34
|
test "$command" = "$argv[1]"
|
|
35
35
|
end`;
|
package/lib/version.d.ts
CHANGED
package/lib/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seamapi/cli",
|
|
3
|
-
"version": "0.13.
|
|
4
|
-
"description": "A command
|
|
3
|
+
"version": "0.13.1",
|
|
4
|
+
"description": "A command-line interface (CLI) for interacting with the Seam API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"types": "index.d.ts",
|
|
@@ -82,11 +82,13 @@
|
|
|
82
82
|
"devEngines": {
|
|
83
83
|
"runtime": {
|
|
84
84
|
"name": "node",
|
|
85
|
-
"version": "^24.11.0 || ^22.11.0"
|
|
85
|
+
"version": "^24.11.0 || ^22.11.0",
|
|
86
|
+
"onFail": "warn"
|
|
86
87
|
},
|
|
87
88
|
"packageManager": {
|
|
88
89
|
"name": "npm",
|
|
89
|
-
"version": "^11.0.0 || ^10.0.0"
|
|
90
|
+
"version": "^11.0.0 || ^10.0.0",
|
|
91
|
+
"onFail": "warn"
|
|
90
92
|
}
|
|
91
93
|
},
|
|
92
94
|
"dependencies": {
|
|
@@ -19,7 +19,7 @@ const header = `# fish completion for the seam command.
|
|
|
19
19
|
#
|
|
20
20
|
# seam completion fish > ~/.config/fish/completions/seam.fish`
|
|
21
21
|
|
|
22
|
-
const helpers = `function __seam_command --description 'Print the seam command path on the command
|
|
22
|
+
const helpers = `function __seam_command --description 'Print the seam command path on the command-line'
|
|
23
23
|
set -l tokens (commandline -opc)
|
|
24
24
|
set -l command
|
|
25
25
|
if test (count $tokens) -gt 1
|
|
@@ -34,7 +34,7 @@ const helpers = `function __seam_command --description 'Print the seam command p
|
|
|
34
34
|
string join ' ' -- $command
|
|
35
35
|
end
|
|
36
36
|
|
|
37
|
-
function __seam_using --description 'Test whether the command
|
|
37
|
+
function __seam_using --description 'Test whether the command-line names the given seam command'
|
|
38
38
|
set -l command (__seam_command)
|
|
39
39
|
test "$command" = "$argv[1]"
|
|
40
40
|
end`
|
package/src/lib/version.ts
CHANGED