File tree Expand file tree Collapse file tree 2 files changed +3
-36
lines changed Expand file tree Collapse file tree 2 files changed +3
-36
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @beforesemicolon/web-component" ,
3
- "version" : " 1.11.1 -next" ,
3
+ "version" : " 1.11.2 -next" ,
4
4
"description" : " Enhanced Markup with ability to create native Web Components" ,
5
5
"engines" : {
6
6
"node" : " >=18.16.0"
Original file line number Diff line number Diff line change 1
1
import { WebComponent } from './web-component'
2
- import {
3
- html ,
4
- state ,
5
- and ,
6
- effect ,
7
- is ,
8
- isNot ,
9
- oneOf ,
10
- or ,
11
- pick ,
12
- when ,
13
- element ,
14
- repeat ,
15
- suspense ,
16
- val ,
17
- } from '@beforesemicolon/markup'
2
+ import * as MARKUP from '@beforesemicolon/markup'
18
3
19
4
declare global {
20
5
interface Window {
@@ -28,25 +13,7 @@ declare global {
28
13
if ( window ) {
29
14
window . BFS = {
30
15
...( window . BFS || { } ) ,
31
- MARKUP : {
32
- ...( window . BFS ?. MARKUP || { } ) ,
33
- html,
34
- state,
35
- effect,
36
- // helpers
37
- and,
38
- is,
39
- isNot,
40
- oneOf,
41
- or,
42
- pick,
43
- repeat,
44
- when,
45
- // utils
46
- element,
47
- suspense,
48
- val,
49
- } as typeof import ( '@beforesemicolon/markup' ) ,
16
+ MARKUP ,
50
17
WebComponent,
51
18
}
52
19
}
You can’t perform that action at this time.
0 commit comments