@skirbi/sugar 0.0.6 → 0.0.7

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,14 @@
1
1
  Revision history for @skirbi/sugar
2
2
 
3
+ 0.0.7 2026-02-20 16:54:59Z
4
+
5
+ * Fix exports in lib/index.mjs: allow SugarInput and SugarSelect to be
6
+ imported from @skirbi/sugar and also all registerAlias-functions to be
7
+ exported from aliases and aliases-register
8
+ * Add tap version exclusions due to bug
9
+ https://github.com/tapjs/tapjs/issues/1062. Broke with node 24.10.x and tap
10
+ >= 21.6.0
11
+
3
12
  0.0.6 2026-02-20 04:30:44Z
4
13
 
5
14
  * Add a way to actually add aliases. It seems between time of initial
package/lib/index.mjs CHANGED
@@ -2,6 +2,11 @@
2
2
  //
3
3
  // SPDX-License-Identifier: MIT
4
4
 
5
- const VERSION = "0.0.6";
5
+ const VERSION = "0.0.7";
6
+
6
7
  export { HTMLElementSugar } from './htmlelement.mjs';
8
+ export { HTMLElementSugarInput } from './htmlelement-input.mjs';
9
+ export { HTMLElementSugarSelect } from './htmlelement-select.mjs';
7
10
  export { parseBoolean } from './boolean.mjs';
11
+ export { registerDevAlias, applyDevAliases } from './aliases.mjs';
12
+ export { registerAliases } from './aliases-register.mjs';
package/package.json CHANGED
@@ -13,7 +13,10 @@
13
13
  "devDependencies": {
14
14
  "jsdoc": "latest",
15
15
  "jsdom": "latest",
16
- "tap": "latest"
16
+ "tap": "<21.6.0 || >21.6.1"
17
+ },
18
+ "engines": {
19
+ "node": ">24.10"
17
20
  },
18
21
  "exports": {
19
22
  ".": "./lib/index.mjs",
@@ -49,5 +52,5 @@
49
52
  },
50
53
  "sideEffects": false,
51
54
  "type": "module",
52
- "version": "0.0.6"
55
+ "version": "0.0.7"
53
56
  }