@vlandoss/starter 0.1.2-git-ee582d6.0 → 0.1.3-git-c3e109d.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/{bin.ts → bin.mjs} +1 -1
- package/dist/{bin.mjs → main.mjs} +2 -7
- package/package.json +5 -5
package/{bin.ts → bin.mjs}
RENAMED
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
import { dirname, join } from "node:path";
|
|
3
|
-
import { fileURLToPath } from "node:url";
|
|
4
1
|
import { createPkgService, createShellService, cwd, getVersion, palette, run } from "@vlandoss/clibuddy";
|
|
5
2
|
import { Argument, Command, Option, createCommand } from "commander";
|
|
6
3
|
import fs from "node:fs";
|
|
4
|
+
import { join } from "node:path";
|
|
7
5
|
import { createLoggy } from "@vlandoss/loggy";
|
|
8
6
|
import nodePlop from "node-plop";
|
|
9
7
|
//#region src/services/config.ts
|
|
@@ -188,7 +186,4 @@ async function main(options) {
|
|
|
188
186
|
}, logger);
|
|
189
187
|
}
|
|
190
188
|
//#endregion
|
|
191
|
-
|
|
192
|
-
main({ binDir: dirname(fileURLToPath(import.meta.url)) });
|
|
193
|
-
//#endregion
|
|
194
|
-
export {};
|
|
189
|
+
export { main };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vlandoss/starter",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3-git-c3e109d.0",
|
|
4
4
|
"description": "The CLI to init a new project in Variable Land",
|
|
5
5
|
"homepage": "https://github.com/variableland/dx/tree/main/packages/starter#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
},
|
|
20
20
|
"module": "src/main.ts",
|
|
21
21
|
"bin": {
|
|
22
|
-
"vland": "./
|
|
22
|
+
"vland": "./bin.mjs"
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
25
|
-
"bin.
|
|
25
|
+
"bin.mjs",
|
|
26
26
|
"dist",
|
|
27
27
|
"src",
|
|
28
28
|
"!src/**/__tests__",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"commander": "14.0.3",
|
|
35
35
|
"node-plop": "0.32.3",
|
|
36
|
-
"@vlandoss/
|
|
37
|
-
"@vlandoss/
|
|
36
|
+
"@vlandoss/loggy": "0.1.1",
|
|
37
|
+
"@vlandoss/clibuddy": "0.1.1"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|