@opndev/racecontrol 0.0.3 → 0.0.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,9 @@
1
1
  Revision history for @opndev/racecontrol
2
2
 
3
+ 0.0.4 2026-05-09 23:15:50Z
4
+
5
+ * Add export to browser
6
+
3
7
  0.0.3 2026-05-09 22:56:20Z
4
8
 
5
9
  * Move app code to this module
package/lib/index.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  // SPDX-FileCopyrightText: 2026 Wesley Schwengle <wesleys@opperschaap.net>
2
2
  //
3
3
  // SPDX-License-Identifier: AGPL-3.0-or-later WITH LicenseRef-OPNDEV-exceptions
4
- const VERSION = '0.0.3';
4
+ const VERSION = '0.0.4';
5
5
 
6
6
  export * from './participants.mjs'
7
7
  export * from './rules.mjs'
package/package.json CHANGED
@@ -9,7 +9,8 @@
9
9
  "tap": "latest"
10
10
  },
11
11
  "exports": {
12
- ".": "./lib/index.mjs"
12
+ ".": "./lib/index.mjs",
13
+ "./browser": "./lib/browser.mjs"
13
14
  },
14
15
  "keywords": [
15
16
  "racecontrol"
@@ -26,5 +27,5 @@
26
27
  },
27
28
  "sideEffects": false,
28
29
  "type": "module",
29
- "version": "0.0.3"
30
+ "version": "0.0.4"
30
31
  }