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
5 changes: 5 additions & 0 deletions .changeset/eager-lamps-cough.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"open-source-stack": patch
---

Updated dependencies, fixed a bug with staging script
5 changes: 5 additions & 0 deletions .changeset/spotty-crabs-clap.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"open-source-stack": patch
---

Migrated to tsdown from tsup
6 changes: 3 additions & 3 deletions packages/open-source-stack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"test": "vitest run",
"test:cov": "vitest run --coverage",
"postbuild": "pnpm run check:exports",
"build": "tsup src/index.ts --config tsup.config.ts",
"dev": "tsup src/index.ts --config tsup.dev.config.ts --watch",
"build": "tsdown src/index.ts --config tsdown.config.ts --clean",
"dev": "tsdown src/index.ts --config tsdown.config.ts --watch",
"prepublishOnly": "pnpm run build",
"typecheck": "tsc",
"validate": "pnpm run check && pnpm run typecheck && pnpm run test",
Expand All @@ -52,7 +52,7 @@
"@types/node": "^20.17.30",
"@vitest/coverage-v8": "^3.1.1",
"happy-dom": "^17.4.4",
"tsup": "^8.4.0",
"tsdown": "^0.9.1",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineConfig } from "tsup"
import { defineConfig } from "tsdown"

export default defineConfig({
entry: ["src/index.ts"],
Expand Down
11 changes: 0 additions & 11 deletions packages/open-source-stack/tsup.config.ts

This file was deleted.

Loading