create-tsdown 0.20.0-beta.4 → 0.20.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
@@ -21,7 +21,7 @@ declare const templateOptions: readonly [{
21
21
  readonly value: "svelte";
22
22
  readonly label: "Svelte";
23
23
  }];
24
- type TemplateOption = typeof templateOptions[number]["value"];
24
+ type TemplateOption = (typeof templateOptions)[number]["value"];
25
25
  interface Options {
26
26
  template?: TemplateOption;
27
27
  path?: string;
package/dist/index.mjs CHANGED
@@ -1,3 +1,3 @@
1
- import { n as resolveOptions, r as templateOptions, t as create } from "./src-OW8J7dbh.mjs";
1
+ import { n as resolveOptions, r as templateOptions, t as create } from "./src-am5un8-C.mjs";
2
2
 
3
3
  export { create, resolveOptions, templateOptions };
package/dist/run.mjs CHANGED
@@ -1,12 +1,12 @@
1
1
  #!/usr/bin/env node
2
- import { r as templateOptions, t as create } from "./src-OW8J7dbh.mjs";
2
+ import { r as templateOptions, t as create } from "./src-am5un8-C.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
8
  var name = "create-tsdown";
9
- var version = "0.20.0-beta.4";
9
+ var version = "0.20.1";
10
10
 
11
11
  //#endregion
12
12
  //#region src/cli.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-tsdown",
3
3
  "type": "module",
4
- "version": "0.20.0-beta.4",
4
+ "version": "0.20.1",
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": "^0.11.0",
46
46
  "cac": "^6.7.14",
47
- "giget": "^2.0.0",
47
+ "giget": "^3.1.1",
48
48
  "package-manager-detector": "^1.6.0"
49
49
  },
50
50
  "scripts": {
File without changes