@heiwa4126/hello5 0.0.5 → 0.0.6-beta.3

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
@@ -88,11 +88,11 @@ After installation, you can use the CLI command:
88
88
  ```console
89
89
  $ heiwa4126-hello5 -h
90
90
 
91
- Usage: heiwa4126-hello5 [-h|--help] [-V|--version]
91
+ Usage: heiwa4126-hello5 [-h|--help] [-v|--version]
92
92
 
93
93
  Options:
94
94
  -h, --help Show this help message
95
- -V, --version Show version
95
+ -v, --version Show version
96
96
 
97
97
  $ heiwa4126-hello5
98
98
 
package/dist/cli.js CHANGED
@@ -1,6 +1,6 @@
1
- #!/usr/bin/env node
2
- import o from"../package.json"with{type:"json"};import{hello as i}from"./hello.js";function n(){console.log(`Usage: heiwa4126-hello5 [-h|--help] [-V|--version]
1
+ #! /usr/bin/env node
2
+ import o from"../package.json"with{type:"json"};import{hello as i}from"./hello.js";function n(){console.log(`Usage: heiwa4126-hello5 [-h|--help] [-v|--version]
3
3
 
4
4
  Options:
5
5
  -h, --help Show this help message
6
- -V, --version Show version`)}function s(){console.log(String(o.version))}function l(){const e=process.argv.slice(2);(e.includes("-h")||e.includes("--help"))&&(n(),process.exit(0)),(e.includes("-V")||e.includes("--version"))&&(s(),process.exit(0)),console.log(i())}l();
6
+ -v, --version Show version`)}function s(){console.log(String(o.version))}function l(){const e=process.argv.slice(2);(e.includes("-h")||e.includes("--help"))&&(n(),process.exit(0)),(e.includes("-v")||e.includes("--version"))&&(s(),process.exit(0)),console.log(i())}l();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heiwa4126/hello5",
3
- "version": "0.0.5",
3
+ "version": "0.0.6-beta.3",
4
4
  "description": "TypeScript hello world library with dual ES modules/CommonJS support. Features GitHub Actions trusted publishing to npmjs with Sigstore attestation.",
5
5
  "type": "module",
6
6
  "main": "./dist/hello.cjs",
@@ -15,7 +15,7 @@
15
15
  }
16
16
  },
17
17
  "bin": {
18
- "heiwa4126-hello5": "./dist/cli.js"
18
+ "heiwa4126-hello5": "dist/cli.js"
19
19
  },
20
20
  "files": [
21
21
  "dist/**/*.js",