@skirbi/sugar 0.1.3 → 0.1.4

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/Changes CHANGED
@@ -1,5 +1,11 @@
1
1
  Revision history for @skirbi/sugar
2
2
 
3
+ 0.1.4 2026-06-06 16:41:57Z
4
+
5
+ * Semtic already had this, but sugar in itself also has side-effects.
6
+ In the future we'll probably note which things have side-effects, but for
7
+ now we treat ourselves as fully side-effect-ish.
8
+
3
9
  0.1.3 2026-06-05 23:23:43Z
4
10
 
5
11
  * Add Livewire integration module
package/lib/index.mjs CHANGED
@@ -2,7 +2,7 @@
2
2
  //
3
3
  // SPDX-License-Identifier: MIT
4
4
 
5
- const VERSION = "0.1.3";
5
+ const VERSION = "0.1.4";
6
6
 
7
7
  export { HTMLElementSugar } from './htmlelement.mjs';
8
8
  export { HTMLElementSugarInput } from './htmlelement-input.mjs';
package/package.json CHANGED
@@ -53,5 +53,5 @@
53
53
  },
54
54
  "sideEffects": false,
55
55
  "type": "module",
56
- "version": "0.1.3"
56
+ "version": "0.1.4"
57
57
  }