gomtm-cli 0.6.16 → 0.6.18
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/gomtm +0 -0
- package/dist/gomtm-cli.js/main.js +1 -1
- package/package.json +1 -10
- package/src/cli/main.ts +1 -1
package/bin/gomtm
CHANGED
|
Binary file
|
|
@@ -21070,7 +21070,7 @@ function loadEnv() {
|
|
|
21070
21070
|
(async () => {
|
|
21071
21071
|
await loadEnv();
|
|
21072
21072
|
program.command("hello").action(async () => {
|
|
21073
|
-
console.log("(gomtmcli
|
|
21073
|
+
console.log("(gomtmcli hello5)", import.meta.url);
|
|
21074
21074
|
});
|
|
21075
21075
|
program.parse();
|
|
21076
21076
|
})();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gomtm-cli",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.6.
|
|
4
|
+
"version": "0.6.18",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"main": "./dist/index.js",
|
|
@@ -17,15 +17,6 @@
|
|
|
17
17
|
"gomtm-cli": "./dist/gomtm-cli.js",
|
|
18
18
|
"gomtm": "./bin/gomtm"
|
|
19
19
|
},
|
|
20
|
-
"os": [
|
|
21
|
-
"darwin",
|
|
22
|
-
"linux",
|
|
23
|
-
"win32"
|
|
24
|
-
],
|
|
25
|
-
"cpu": [
|
|
26
|
-
"x64",
|
|
27
|
-
"arm64"
|
|
28
|
-
],
|
|
29
20
|
"sideEffects": false,
|
|
30
21
|
"scripts": {
|
|
31
22
|
"build": "bun build src/cli/main.ts --outdir=dist/gomtm-cli.js"
|
package/src/cli/main.ts
CHANGED
|
@@ -25,7 +25,7 @@ function loadEnv() {
|
|
|
25
25
|
(async () => {
|
|
26
26
|
await loadEnv();
|
|
27
27
|
program.command("hello").action(async () => {
|
|
28
|
-
console.log("(gomtmcli
|
|
28
|
+
console.log("(gomtmcli hello5)", import.meta.url);
|
|
29
29
|
// await buildWithViteBuild();
|
|
30
30
|
// console.log("(mtxuilib)build tsc");
|
|
31
31
|
// await buildWithTsc();
|