bun-plugin-dtsx 0.9.20 → 0.9.22

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 (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -260,7 +260,7 @@ function normalizeConfig(options, build) {
260
260
  root,
261
261
  entrypoints,
262
262
  outdir,
263
- clean: options.clean,
263
+ clean: options.clean ?? true,
264
264
  tsconfigPath: options.tsconfigPath
265
265
  };
266
266
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bun-plugin-dtsx",
3
3
  "type": "module",
4
- "version": "0.9.20",
4
+ "version": "0.9.22",
5
5
  "description": "A Bun Bundler plugin that auto generates your DTS types extremely fast.",
6
6
  "author": "Chris Breuer <chris@ow3.org>",
7
7
  "license": "MIT",
@@ -51,6 +51,6 @@
51
51
  "lint:fix": "bun x --bun pickier . --fix"
52
52
  },
53
53
  "dependencies": {
54
- "@stacksjs/dtsx": "0.9.20"
54
+ "@stacksjs/dtsx": "0.9.22"
55
55
  }
56
56
  }