Skip to content

Commit

Permalink
0.0.49
Browse files Browse the repository at this point in the history
  • Loading branch information
bahrus committed Jul 27, 2024
1 parent d888b28 commit 66c1f95
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
7 changes: 2 additions & 5 deletions behivior.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { BeHive } from 'be-hive/be-hive.js';
import { MountObserver } from 'mount-observer/MountObserver.js';
import { BeHive, seed, MountObserver } from 'be-hive/be-hive.js';
const base = 'be-written';
export const emc = {
base,
Expand All @@ -12,7 +11,5 @@ export const emc = {
return BeWritten;
}
};
const mose = document.createElement('script');
mose.id = base;
mose.synConfig = emc;
const mose = seed(emc);
MountObserver.synthesize(document, BeHive, mose);
7 changes: 2 additions & 5 deletions behivior.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {BeHive, EMC} from 'be-hive/be-hive.js';
import {MountObserver, MOSE} from 'mount-observer/MountObserver.js';
import {BeHive, EMC, seed, MountObserver} from 'be-hive/be-hive.js';

const base = 'be-written';
export const emc: EMC = {
Expand All @@ -14,9 +13,7 @@ export const emc: EMC = {
}
};

const mose = document.createElement('script') as MOSE<EMC>;
mose.id = base;
mose.synConfig = emc;
const mose = seed(emc);

MountObserver.synthesize(document, BeHive, mose);

Expand Down

0 comments on commit 66c1f95

Please sign in to comment.