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 {
1616 babelrc : false ,
1717 } ) ,
1818 ] ,
19- external : [ 'property-information' , 'web-namespaces' ] ,
19+ external : [
20+ 'property-information/find' ,
21+ 'property-information/html' ,
22+ 'web-namespaces' ,
23+ ] ,
2024} ;
Original file line number Diff line number Diff line change 11import ns from 'web-namespaces' ;
2- import info from 'property-information' ;
2+ import find from 'property-information/find' ;
3+ import schema from 'property-information/html' ;
34
45function transform ( node , options ) {
56 switch ( node . type ) {
@@ -103,7 +104,7 @@ function element(node, options) {
103104 commaSeparated,
104105 // `spaceSeparated`,
105106 // `commaOrSpaceSeparated`,
106- } = info . find ( info . html , key ) ;
107+ } = find ( schema , key ) ;
107108
108109 let value = properties [ key ] ;
109110
You can’t perform that action at this time.
0 commit comments