Skip to content

Commit

Permalink
build: disable DTS in dev
Browse files Browse the repository at this point in the history
  • Loading branch information
holic committed Apr 14, 2024
1 parent fb2bd88 commit d840240
Show file tree
Hide file tree
Showing 29 changed files with 23 additions and 4,399 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"build": "turbo run build",
"changelog:generate": "bun scripts/changelog.ts",
"clean": "turbo run clean",
"dev": "turbo run dev --concurrency 100",
"dev": "TSUP_SKIP_DTS=true turbo run dev --concurrency 100",
"dist-tag-rm": "pnpm recursive exec -- sh -c 'npm dist-tag rm $(cat package.json | jq -r \".name\") $TAG || true'",
"docs:generate:api": "bun scripts/render-api-docs.ts",
"foundryup": "curl -L https://foundry.paradigm.xyz | bash && bash ~/.foundry/bin/foundryup",
Expand Down
2 changes: 1 addition & 1 deletion packages/abi-ts/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default defineConfig({
entry: ["src/index.ts", "src/abi-ts.ts"],
target: "esnext",
format: ["esm"],
dts: true,
dts: !process.env.TSUP_SKIP_DTS,
sourcemap: true,
clean: true,
minify: true,
Expand Down
2 changes: 1 addition & 1 deletion packages/block-logs-stream/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default defineConfig({
entry: ["src/index.ts"],
target: "esnext",
format: ["esm"],
dts: true,
dts: !process.env.TSUP_SKIP_DTS,
sourcemap: true,
clean: true,
minify: true,
Expand Down
Loading

0 comments on commit d840240

Please sign in to comment.