Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: egoist/tsup
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.2.0
Choose a base ref
...
head repository: egoist/tsup
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.3.0
Choose a head ref
  • 6 commits
  • 14 files changed
  • 4 contributors

Commits on Aug 29, 2023

  1. 1
    Copy the full SHA
    9b81362 View commit details

Commits on Sep 17, 2023

  1. feat: update esbuild to 0.19.2 (#987)

    This fixes the type arguments for JS decorators
    ocavue authored Sep 17, 2023
    Copy the full SHA
    e85437e View commit details

Commits on Oct 16, 2023

  1. Copy the full SHA
    438ec47 View commit details
  2. feat: support es3 target (#965)

    sxzz authored Oct 16, 2023
    Copy the full SHA
    1dbd86b View commit details
  3. fix: add newline after cjsInterop

    closes #1022
    sxzz committed Oct 16, 2023
    Copy the full SHA
    b749a27 View commit details
  4. 1
    Copy the full SHA
    690af7b View commit details
Showing with 513 additions and 147 deletions.
  1. +1 −0 .gitignore
  2. +6 −7 package.json
  3. +412 −70 pnpm-lock.yaml
  4. +19 −3 src/index.ts
  5. +3 −2 src/options.ts
  6. +1 −1 src/plugins/cjs-interop.ts
  7. +0 −52 src/plugins/es5.ts
  8. +65 −0 src/plugins/swc-target.ts
  9. +0 −2 src/plugins/tree-shaking.ts
  10. +0 −2 src/rollup.ts
  11. +1 −1 test/__snapshots__/index.test.ts.snap
  12. +1 −1 test/index.test.ts
  13. +1 −1 tsup.config.ts
  14. +3 −5 vitest.config.ts
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -4,3 +4,4 @@ dist
.cache
playground
.idea
.DS_Store
13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -32,19 +32,19 @@
"cac": "^6.7.12",
"chokidar": "^3.5.1",
"debug": "^4.3.1",
"esbuild": "^0.18.2",
"esbuild": "^0.19.2",
"execa": "^5.0.0",
"globby": "^11.0.3",
"joycon": "^3.0.1",
"postcss-load-config": "^4.0.1",
"resolve-from": "^5.0.0",
"rollup": "^3.2.5",
"rollup": "^4.0.2",
"source-map": "0.8.0-beta.0",
"sucrase": "^3.20.3",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"@rollup/plugin-json": "5.0.1",
"@rollup/plugin-json": "6.0.1",
"@swc/core": "1.2.218",
"@types/debug": "4.1.7",
"@types/flat": "5.0.2",
@@ -59,8 +59,7 @@
"postcss-simple-vars": "6.0.3",
"prettier": "2.5.1",
"resolve": "1.20.0",
"rollup-plugin-dts": "5.3.0",
"rollup-plugin-hashbang": "3.0.0",
"rollup-plugin-dts": "6.1.0",
"sass": "1.62.1",
"strip-json-comments": "4.0.0",
"svelte": "3.46.4",
@@ -76,7 +75,7 @@
"peerDependencies": {
"@swc/core": "^1",
"postcss": "^8.4.12",
"typescript": ">=4.1.0"
"typescript": ">=4.5.0"
},
"peerDependenciesMeta": {
"typescript": {
@@ -90,7 +89,7 @@
}
},
"engines": {
"node": ">=16.14"
"node": ">=18"
},
"packageManager": "pnpm@8.6.0"
}
Loading