create-tsdown 0.20.0-beta.3 → 0.20.0-beta.4
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 +1 -1
- package/dist/run.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -21,7 +21,7 @@ declare const templateOptions: readonly [{
|
|
|
21
21
|
readonly value: "svelte";
|
|
22
22
|
readonly label: "Svelte";
|
|
23
23
|
}];
|
|
24
|
-
type TemplateOption =
|
|
24
|
+
type TemplateOption = typeof templateOptions[number]["value"];
|
|
25
25
|
interface Options {
|
|
26
26
|
template?: TemplateOption;
|
|
27
27
|
path?: string;
|
package/dist/run.mjs
CHANGED