create-tsdown 0.21.5 → 0.21.6
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/run.mjs +1 -1
- package/package.json +2 -2
package/dist/run.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { log } from "@clack/prompts";
|
|
|
5
5
|
import { cac } from "cac";
|
|
6
6
|
//#endregion
|
|
7
7
|
//#region src/cli.ts
|
|
8
|
-
const cli = cac("create-tsdown").version("0.21.
|
|
8
|
+
const cli = cac("create-tsdown").version("0.21.6").help();
|
|
9
9
|
cli.command("[path]", "Create a tsdown project").option("-t, --template <template>", `Available templates: ${templateOptions.map((option) => option.value).join(", ")}`).action((path, options) => create(path, options));
|
|
10
10
|
async function runCLI() {
|
|
11
11
|
cli.parse(process.argv, { run: false });
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-tsdown",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.21.
|
|
4
|
+
"version": "0.21.6",
|
|
5
5
|
"description": "Create a new tsdown project",
|
|
6
6
|
"author": "Kevin Deng <sxzz@sxzz.moe>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@clack/prompts": "^1.1.0",
|
|
46
46
|
"cac": "^7.0.0",
|
|
47
|
-
"giget": "^3.
|
|
47
|
+
"giget": "^3.2.0",
|
|
48
48
|
"package-manager-detector": "^1.6.0"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|