We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e0709d commit 64d4e4cCopy full SHA for 64d4e4c
src/index.js
@@ -181,7 +181,10 @@ function processTree(options) {
181
182
log(`${++processCounter}) Processing "${currentNode.tag}" from "${componentPath}"`, 'processTree');
183
184
- let nextNode = parser(readFileSync(componentPath, 'utf8'), options.parserOptions);
+ let nextNode = parser(
185
+ readFileSync(componentPath, 'utf8'),
186
+ mergeWith({recognizeSelfClosing: true}, options.parserOptions)
187
+ );
188
189
// Set filled slots
190
setFilledSlots(currentNode, filledSlots, options);
0 commit comments