@opndev/paga 0.0.1 → 0.0.2

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,9 @@
1
1
  Revision history for@opndev/paga
2
2
 
3
+ 0.0.2 2026-06-11 05:03:29Z
4
+
5
+ * Side-effects == true
6
+
3
7
  0.0.1 2026-06-11 04:52:02Z
4
8
 
5
9
  * First release to an unsuspecting world
package/lib/index.mjs CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  import { HTMLElementSugar, withConnectedSugar } from '@skirbi/sugar';
7
7
 
8
- const VERSION = "0.0.1";
8
+ const VERSION = "0.0.2";
9
9
 
10
10
  export class OpndevPagaCxpayForm extends withConnectedSugar(HTMLElementSugar) {
11
11
  static tag = 'opndev-paga-cxpay-form';
package/package.json CHANGED
@@ -25,7 +25,7 @@
25
25
  "release": "rzil release",
26
26
  "test": "echo no tests just yet"
27
27
  },
28
- "sideEffects": false,
28
+ "sideEffects": true,
29
29
  "type": "module",
30
- "version": "0.0.1"
30
+ "version": "0.0.2"
31
31
  }