fastpass-cli 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/cli.js +1 -1
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "fastpass-cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Cloudflare Access in 60 seconds.",
5
5
  "type": "module",
6
6
  "bin": {
7
- "fastpass": "./bin/fastpass.js"
7
+ "fastpass-cli": "./bin/fastpass.js"
8
8
  },
9
9
  "files": [
10
10
  "bin/",
package/src/cli.js CHANGED
@@ -13,7 +13,7 @@ export function run() {
13
13
  const program = new Command();
14
14
 
15
15
  program
16
- .name('fastpass')
16
+ .name('fastpass-cli')
17
17
  .description('Cloudflare Access in 60 seconds.')
18
18
  .version('0.1.0');
19
19