@cascateer/core 2.0.2 → 2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cascateer/core",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/cascateer/core.git"
@@ -190,3 +190,6 @@ export const createElement = (
190
190
 
191
191
  export const createFragment = ({ children }: JSX.IntrinsicAttributes) =>
192
192
  new ObservableFragment(children);
193
+
194
+ export const jsx = createElement;
195
+ export const Fragment = createFragment;
package/src/multicast.ts CHANGED
@@ -77,5 +77,3 @@ self.addEventListener("connect", ({ ports }) => {
77
77
  ).subscribe();
78
78
  }
79
79
  });
80
-
81
- export default {};