Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/awesome-graphql-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"README.md"
],
"scripts": {
"build": "tsup",
"build": "tsdown",
"check-format": "pnpm run prettier --check",
"check-types": "tsc",
"format": "pnpm run prettier --write",
Expand Down Expand Up @@ -72,7 +72,7 @@
"mercurius-upload": "8.0.0",
"np": "10.2.0",
"prettier": "catalog:",
"tsup": "8.5.0",
"tsdown": "0.13.0",
"typescript": "catalog:",
"undici": "7.10.0",
"whatwg-fetch": "3.6.20"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { copyFile } from 'node:fs/promises'

import { defineConfig, type Options } from 'tsup'
import { defineConfig, type Options } from 'tsdown'

export default defineConfig(options => {
const commonOptions: Partial<Options> = {
Expand All @@ -16,6 +16,7 @@ export default defineConfig(options => {
...commonOptions,
format: ['esm'],
minify: false,
fixedExtension: true,
outExtension: () => ({ js: '.mjs' }),
dts: true,
clean: true,
Expand Down
Loading