File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -16,5 +16,9 @@ export default {
16
16
babelrc : false ,
17
17
} ) ,
18
18
] ,
19
- external : [ 'property-information' , 'web-namespaces' ] ,
19
+ external : [
20
+ 'property-information/find' ,
21
+ 'property-information/html' ,
22
+ 'web-namespaces' ,
23
+ ] ,
20
24
} ;
Original file line number Diff line number Diff line change 1
1
import ns from 'web-namespaces' ;
2
- import info from 'property-information' ;
2
+ import find from 'property-information/find' ;
3
+ import schema from 'property-information/html' ;
3
4
4
5
function transform ( node , options ) {
5
6
switch ( node . type ) {
@@ -103,7 +104,7 @@ function element(node, options) {
103
104
commaSeparated,
104
105
// `spaceSeparated`,
105
106
// `commaOrSpaceSeparated`,
106
- } = info . find ( info . html , key ) ;
107
+ } = find ( schema , key ) ;
107
108
108
109
let value = properties [ key ] ;
109
110
You can’t perform that action at this time.
0 commit comments