create-tsdown 0.15.12 → 0.16.1

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 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
@@ -1,3 +1,3 @@
1
- import { n as resolveOptions, r as templateOptions, t as create } from "./src-DhcPpNe4.mjs";
1
+ import { n as resolveOptions, r as templateOptions, t as create } from "./src-hbG8OCx5.mjs";
2
2
 
3
3
  export { create, resolveOptions, templateOptions };
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-DhcPpNe4.mjs";
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.15.12";
8
+ var version = "0.16.1";
9
9
 
10
10
  //#endregion
11
11
  //#region src/cli.ts
@@ -25,6 +25,10 @@ const templateOptions = [
25
25
  {
26
26
  value: "solid",
27
27
  label: "Solid"
28
+ },
29
+ {
30
+ value: "svelte",
31
+ label: "Svelte"
28
32
  }
29
33
  ];
30
34
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-tsdown",
3
- "version": "0.15.12",
3
+ "version": "0.16.1",
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
  }