create-tsdown 0.15.11 → 0.16.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.d.mts +3 -0
- package/dist/index.mjs +1 -1
- package/dist/run.mjs +2 -2
- package/dist/{src-DhcPpNe4.mjs → src-hbG8OCx5.mjs} +4 -0
- package/package.json +4 -2
package/dist/index.d.mts
CHANGED
|
@@ -14,6 +14,9 @@ declare const templateOptions: readonly [{
|
|
|
14
14
|
}, {
|
|
15
15
|
readonly value: "solid";
|
|
16
16
|
readonly label: "Solid";
|
|
17
|
+
}, {
|
|
18
|
+
readonly value: "svelte";
|
|
19
|
+
readonly label: "Svelte";
|
|
17
20
|
}];
|
|
18
21
|
type TemplateOption = (typeof templateOptions)[number]["value"];
|
|
19
22
|
interface Options {
|
package/dist/index.mjs
CHANGED
package/dist/run.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { r as templateOptions, t as create } from "./src-
|
|
2
|
+
import { r as templateOptions, t as create } from "./src-hbG8OCx5.mjs";
|
|
3
3
|
import process from "node:process";
|
|
4
4
|
import { log } from "@clack/prompts";
|
|
5
5
|
import { cac } from "cac";
|
|
6
6
|
|
|
7
7
|
//#region package.json
|
|
8
|
-
var version = "0.
|
|
8
|
+
var version = "0.16.0";
|
|
9
9
|
|
|
10
10
|
//#endregion
|
|
11
11
|
//#region src/cli.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-tsdown",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0",
|
|
4
4
|
"description": "Create a new tsdown project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -49,5 +49,7 @@
|
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">=20.19.0"
|
|
51
51
|
},
|
|
52
|
-
"scripts": {
|
|
52
|
+
"scripts": {
|
|
53
|
+
"dev": "node ./src/run.ts"
|
|
54
|
+
}
|
|
53
55
|
}
|