Skip to content

Commit 0bbb6a1

Browse files
authored
Merge pull request #119 from AegisJSProject/bug/registry
Fixed exposing callback registrty on `globalThis`
2 parents d5a1d64 + 59b99d9 commit 0bbb6a1

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### [v2.0.3] - 2026-03-15
11+
12+
### Fixed
13+
- Fixed exposing callback registrty on `globalThis`
14+
1015
## [v2.0.2] - 2026-03-11
1116

1217
### Added

callbacks.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,5 +344,3 @@ export function on(event, callback, { capture = false, passive = false, once = f
344344
return parts.map(([prop, val]) => `${prop}="${val}"`).join(' ');
345345
}
346346
}
347-
348-
globalThis.registry = registry;

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aegisjsproject/callback-registry",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": " A callback registry for AegisJSProject",
55
"keywords": [
66
"aegis",

rollup.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import terser from '@rollup/plugin-terser';
22

33
export default [{
44
input: 'callbackRegistry.js',
5+
external: ['@shgysk8zer0/signals'],
56
output: [{
67
file: 'callbackRegistry.cjs',
78
format: 'cjs',
@@ -13,6 +14,7 @@ export default [{
1314
}],
1415
}, {
1516
input: 'callbacks.js',
17+
external: ['@shgysk8zer0/signals'],
1618
output: [{
1719
file: 'callbacks.cjs',
1820
format: 'cjs',

0 commit comments

Comments
 (0)