create-tsdown 0.16.4 → 0.16.5

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
@@ -11,6 +11,9 @@ declare const templateOptions: readonly [{
11
11
  }, {
12
12
  readonly value: "react";
13
13
  readonly label: "React";
14
+ }, {
15
+ readonly value: "react-compiler";
16
+ readonly label: "React with React Compiler";
14
17
  }, {
15
18
  readonly value: "solid";
16
19
  readonly label: "Solid";
package/dist/index.mjs CHANGED
@@ -1,3 +1,3 @@
1
- import { n as resolveOptions, r as templateOptions, t as create } from "./src-DI-_corJ.mjs";
1
+ import { n as resolveOptions, r as templateOptions, t as create } from "./src-OW8J7dbh.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-DI-_corJ.mjs";
2
+ import { r as templateOptions, t as create } from "./src-OW8J7dbh.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.16.4";
8
+ var version = "0.16.5";
9
9
 
10
10
  //#endregion
11
11
  //#region src/cli.ts
@@ -22,6 +22,10 @@ const templateOptions = [
22
22
  value: "react",
23
23
  label: "React"
24
24
  },
25
+ {
26
+ value: "react-compiler",
27
+ label: "React with React Compiler"
28
+ },
25
29
  {
26
30
  value: "solid",
27
31
  label: "Solid"
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "create-tsdown",
3
- "version": "0.16.4",
3
+ "version": "0.16.5",
4
4
  "description": "Create a new tsdown project",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
- "homepage": "https://github.com/rolldown/tsdown/tree/main/packages/create#readme",
7
+ "homepage": "http://tsdown.dev/",
8
8
  "bugs": {
9
9
  "url": "https://github.com/rolldown/tsdown/issues"
10
10
  },