@multiplatform.one/cli 1.0.22 → 1.0.24
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/bin/multiplatformOne.mjs +6 -4
- package/package.json +7 -3
package/bin/multiplatformOne.mjs
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
1
3
|
/*
|
|
2
|
-
* File: /bin/
|
|
3
|
-
* Project: @multiplatform.one/
|
|
4
|
-
* File Created:
|
|
4
|
+
* File: /bin/multiplatformOne.mjs
|
|
5
|
+
* Project: @multiplatform.one/cli
|
|
6
|
+
* File Created: 22-06-2024 14:11:12
|
|
5
7
|
* Author: Clay Risser
|
|
6
8
|
* -----
|
|
7
9
|
* BitSpur (c) Copyright 2021 - 2024
|
|
@@ -19,4 +21,4 @@
|
|
|
19
21
|
* limitations under the License.
|
|
20
22
|
*/
|
|
21
23
|
|
|
22
|
-
import '
|
|
24
|
+
import '@multiplatform.one/cli/multiplatformOne';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@multiplatform.one/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.24",
|
|
4
4
|
"author": "BitSpur <support@bitspur.com> (https://bitspur.com)",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
@@ -17,10 +17,14 @@
|
|
|
17
17
|
"import": "./lib/index.mjs",
|
|
18
18
|
"types": "./lib/index.d.mts"
|
|
19
19
|
},
|
|
20
|
+
"./multiplatformOne": {
|
|
21
|
+
"import": "./lib/multiplatformOne.mjs",
|
|
22
|
+
"types": "./lib/multiplatformOne.d.mts"
|
|
23
|
+
},
|
|
20
24
|
"./package.json": "./package.json"
|
|
21
25
|
},
|
|
22
26
|
"bin": {
|
|
23
|
-
"multiplatform.one": "./
|
|
27
|
+
"multiplatform.one": "./multiplatformOne"
|
|
24
28
|
},
|
|
25
29
|
"files": [
|
|
26
30
|
"bin",
|
|
@@ -47,7 +51,7 @@
|
|
|
47
51
|
"@types/node": "~20.12.13",
|
|
48
52
|
"tsup": "^8.1.0",
|
|
49
53
|
"typescript": "~5.3.3",
|
|
50
|
-
"@multiplatform.one/utils": "^0.0.
|
|
54
|
+
"@multiplatform.one/utils": "^0.0.9"
|
|
51
55
|
},
|
|
52
56
|
"dependencies": {
|
|
53
57
|
"commander": "^9.5.0",
|