html-bundle 6.0.15 → 6.0.16

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.
package/dist/bundle.mjs CHANGED
@@ -189,7 +189,6 @@ async function minifyCode() {
189
189
  entryPoints: Array.from(inlineFiles),
190
190
  charset: "utf8",
191
191
  format: "esm",
192
- incremental: isHMR,
193
192
  sourcemap: isHMR,
194
193
  splitting: true,
195
194
  define: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "html-bundle",
3
- "version": "6.0.15",
3
+ "version": "6.0.16",
4
4
  "description": "A very simple bundler for HTML SFC",
5
5
  "bin": "./dist/bundle.mjs",
6
6
  "scripts": {
package/src/bundle.mts CHANGED
@@ -230,7 +230,6 @@ async function minifyCode(): Promise<unknown> {
230
230
  entryPoints: Array.from(inlineFiles),
231
231
  charset: "utf8",
232
232
  format: "esm",
233
- incremental: isHMR,
234
233
  sourcemap: isHMR,
235
234
  splitting: true,
236
235
  define: {