Skip to content

Commit 8bf7ed4

Browse files
bad
1 parent 71a6caf commit 8bf7ed4

3 files changed

Lines changed: 22 additions & 25 deletions

File tree

packages/mime-types/tsdown.config.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ import { defineConfig } from "tsdown";
22

33
export default defineConfig({
44
entry: {
5-
"dist/index": "src/index.ts",
6-
"application/index": "src/application.ts",
7-
"audio/index": "src/audio.ts",
8-
"image/index": "src/image.ts",
9-
"text/index": "src/text.ts",
10-
"video/index": "src/video.ts",
5+
index: "src/index.ts",
6+
"../application/index": "src/application.ts",
7+
"../audio/index": "src/audio.ts",
8+
"../image/index": "src/image.ts",
9+
"../text/index": "src/text.ts",
10+
"../video/index": "src/video.ts",
1111
},
1212
format: ["esm", "cjs"],
1313
dts: { sourcemap: true, tsconfig: "tsconfig.build.json" },

packages/react/tsdown.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ const execAsync = promisify(exec);
66

77
export default defineConfig({
88
entry: {
9-
"dist/index": "src/index.ts",
10-
"native/index": "src/native.ts",
11-
"next-ssr-plugin/index": "src/next-ssr-plugin.tsx",
9+
index: "src/index.ts",
10+
"../native/index": "src/native.ts",
11+
"../next-ssr-plugin/index": "src/next-ssr-plugin.tsx",
1212
},
1313
format: ["esm", "cjs"],
1414
dts: {

packages/uploadthing/tsdown.config.ts

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,21 @@ import { defineConfig } from "tsdown";
33

44
export default defineConfig({
55
entry: {
6-
"client/index": "src/client.ts",
7-
"client-future/index": "src/client-future.ts",
8-
"server/index": "src/server.ts",
9-
"next/index": "src/next.ts",
10-
"next-legacy/index": "src/next-legacy.ts",
11-
"effect-platform/index": "src/effect-platform.ts",
12-
"tw/index": "src/tw/index.ts",
13-
"fastify/index": "src/fastify.ts",
14-
"express/index": "src/express.ts",
15-
"h3/index": "src/h3.ts",
16-
"remix/index": "src/remix.ts",
17-
"types/index": "src/types.ts",
6+
"../client/index": "src/client.ts",
7+
"../client-future/index": "src/client-future.ts",
8+
"../server/index": "src/server.ts",
9+
"../next/index": "src/next.ts",
10+
"../next-legacy/index": "src/next-legacy.ts",
11+
"../effect-platform/index": "src/effect-platform.ts",
12+
"../tw/index": "src/tw/index.ts",
13+
"../fastify/index": "src/fastify.ts",
14+
"../express/index": "src/express.ts",
15+
"../h3/index": "src/h3.ts",
16+
"../remix/index": "src/remix.ts",
17+
"../types/index": "src/types.ts",
1818
},
1919
format: ["esm", "cjs"],
20-
dts: {
21-
sourcemap: true,
22-
tsconfig: "tsconfig.build.json",
23-
},
20+
dts: { sourcemap: true, tsconfig: "tsconfig.build.json" },
2421
onSuccess: async () => {
2522
await fsp.copyFile("src/tw/v4.css", "tw/v4.css");
2623
},

0 commit comments

Comments
 (0)