@by-association-only/cli 3.0.0 → 3.2.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/dist/index.js +4 -1
- package/dist/index.mjs +4 -1
- package/package.json +4 -1
package/dist/index.js
CHANGED
|
@@ -41,7 +41,7 @@ var import_commander = require("commander");
|
|
|
41
41
|
// package.json
|
|
42
42
|
var package_default = {
|
|
43
43
|
name: "@by-association-only/cli",
|
|
44
|
-
version: "3.
|
|
44
|
+
version: "3.2.0",
|
|
45
45
|
description: "By Association Only CLI",
|
|
46
46
|
private: false,
|
|
47
47
|
author: "BAO Agency",
|
|
@@ -49,6 +49,9 @@ var package_default = {
|
|
|
49
49
|
main: "./dist/index.js",
|
|
50
50
|
module: "./dist/index.mjs",
|
|
51
51
|
types: "./dist/index.d.ts",
|
|
52
|
+
bin: {
|
|
53
|
+
bao: "./dist/index.mjs"
|
|
54
|
+
},
|
|
52
55
|
files: [
|
|
53
56
|
"dist"
|
|
54
57
|
],
|
package/dist/index.mjs
CHANGED
|
@@ -24,7 +24,7 @@ import { program } from "commander";
|
|
|
24
24
|
// package.json
|
|
25
25
|
var package_default = {
|
|
26
26
|
name: "@by-association-only/cli",
|
|
27
|
-
version: "3.
|
|
27
|
+
version: "3.2.0",
|
|
28
28
|
description: "By Association Only CLI",
|
|
29
29
|
private: false,
|
|
30
30
|
author: "BAO Agency",
|
|
@@ -32,6 +32,9 @@ var package_default = {
|
|
|
32
32
|
main: "./dist/index.js",
|
|
33
33
|
module: "./dist/index.mjs",
|
|
34
34
|
types: "./dist/index.d.ts",
|
|
35
|
+
bin: {
|
|
36
|
+
bao: "./dist/index.mjs"
|
|
37
|
+
},
|
|
35
38
|
files: [
|
|
36
39
|
"dist"
|
|
37
40
|
],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@by-association-only/cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "By Association Only CLI",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "BAO Agency",
|
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
"main": "./dist/index.js",
|
|
9
9
|
"module": "./dist/index.mjs",
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
11
|
+
"bin": {
|
|
12
|
+
"bao": "./dist/index.mjs"
|
|
13
|
+
},
|
|
11
14
|
"files": [
|
|
12
15
|
"dist"
|
|
13
16
|
],
|