@savvy-web/bundler 0.11.0 → 0.11.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -3
  3. package/run.js +0 -1
package/README.md CHANGED
@@ -154,7 +154,7 @@ const config = defineBuild({
154
154
  });
155
155
  ```
156
156
 
157
- The resolved JSX settings feed both the dts tsconfig and the tsdown transform. Omit `jsx` to inherit the tsconfig value.
157
+ The resolved JSX settings are written into the generated tsconfig, which both the JS and declaration passes read, so the transform and the `.d.ts` emit share one runtime. Omit `jsx` to inherit the tsconfig value.
158
158
 
159
159
  ## Dual-format output
160
160
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/bundler",
3
- "version": "0.11.0",
3
+ "version": "0.11.2",
4
4
  "private": false,
5
5
  "description": "Zero-config tsdown-based bundler for Silk Suite TypeScript packages",
6
6
  "homepage": "https://github.com/savvy-web/systems/tree/main/packages/bundler",
@@ -29,10 +29,10 @@
29
29
  "./package.json": "./package.json"
30
30
  },
31
31
  "dependencies": {
32
- "@savvy-web/tsdown-plugins": "0.11.0",
32
+ "@savvy-web/tsdown-plugins": "0.11.2",
33
33
  "@tsdown/exe": "^0.22.1",
34
34
  "effect": "^3.21.4",
35
- "rolldown": "^1.1.2",
35
+ "rolldown": "^1.1.3",
36
36
  "tsdown": "^0.22.3"
37
37
  },
38
38
  "peerDependencies": {
package/run.js CHANGED
@@ -217,7 +217,6 @@ async function runBuild(config, options) {
217
217
  ...config.bundle !== void 0 ? { bundle: config.bundle } : {},
218
218
  ...config.minify !== void 0 ? { minify: config.minify } : {},
219
219
  ...config.transform !== void 0 ? { transform: config.transform } : {},
220
- ...jsx !== void 0 ? { jsx } : {},
221
220
  ...config.format !== void 0 ? { format: config.format } : {},
222
221
  ...config.define !== void 0 ? { define: config.define } : {},
223
222
  ...overridePartitions.length > 0 ? { overrides: overridePartitions } : {},