@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 CHANGED
@@ -5,7 +5,7 @@
5
5
  [![npm](https://img.shields.io/npm/v/@seamapi/cli.svg)](https://www.npmjs.com/package/@seamapi/cli)
6
6
  [![GitHub Actions](https://github.com/seamapi/cli/actions/workflows/check.yml/badge.svg)](https://github.com/seamapi/cli/actions/workflows/check.yml)
7
7
 
8
- A command line interface (CLI) for interacting with the Seam API.
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 line'
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 line names the given seam 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
@@ -1,4 +1,4 @@
1
- declare const seamapiCliVersion = "0.13.0";
1
+ declare const seamapiCliVersion = "0.13.1";
2
2
  declare const seamapiBlueprintVersion = "1.2.0";
3
3
  export { seamapiBlueprintVersion };
4
4
  export default seamapiCliVersion;
package/lib/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // Versions are replaced with generated values when the package is packed.
2
- const seamapiCliVersion = '0.13.0';
2
+ const seamapiCliVersion = '0.13.1';
3
3
  const seamapiBlueprintVersion = '1.2.0';
4
4
  export { seamapiBlueprintVersion };
5
5
  export default seamapiCliVersion;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@seamapi/cli",
3
- "version": "0.13.0",
4
- "description": "A command line interface (CLI) for interacting with the Seam API.",
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 line'
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 line names the given seam 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`
@@ -1,5 +1,5 @@
1
1
  // Versions are replaced with generated values when the package is packed.
2
- const seamapiCliVersion = '0.13.0'
2
+ const seamapiCliVersion = '0.13.1'
3
3
  const seamapiBlueprintVersion = '1.2.0'
4
4
 
5
5
  export { seamapiBlueprintVersion }