@savvy-web/bundler 0.9.1 → 0.10.0

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 +2 -1
  2. package/package.json +2 -2
  3. package/run.js +1 -0
package/README.md CHANGED
@@ -59,7 +59,8 @@ The bundler ships its shared TypeScript base as a subpath export. Extend it from
59
59
 
60
60
  ```json
61
61
  {
62
- "extends": ["@savvy-web/bundler/ecma.json"]
62
+ "$schema": "https://json.schemastore.org/tsconfig",
63
+ "extends": ["@savvy-web/bundler/tsconfig/ecma.json"]
63
64
  }
64
65
  ```
65
66
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/bundler",
3
- "version": "0.9.1",
3
+ "version": "0.10.0",
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,7 +29,7 @@
29
29
  "./package.json": "./package.json"
30
30
  },
31
31
  "dependencies": {
32
- "@savvy-web/tsdown-plugins": "0.9.1",
32
+ "@savvy-web/tsdown-plugins": "0.10.0",
33
33
  "@tsdown/exe": "^0.22.1",
34
34
  "effect": "^3.21.4",
35
35
  "tsdown": "^0.22.3"
package/run.js CHANGED
@@ -225,6 +225,7 @@ async function runBuild(config, options) {
225
225
  ...subdirExports.size > 0 ? { subdirExports } : {},
226
226
  ...looseFiles !== void 0 ? { looseFiles } : {},
227
227
  ...exeRewrite !== void 0 ? { exeRewrite } : {},
228
+ ...target === "prod" ? { emitDeclarations: true } : {},
228
229
  collector,
229
230
  verbose
230
231
  });