@mpxjs/webpack-plugin 2.10.17-beta.1 → 2.10.17-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -764,9 +764,9 @@ function parse (template, options) {
|
|
|
764
764
|
|
|
765
765
|
const children = currentParent.children
|
|
766
766
|
|
|
767
|
-
const isTextLikeParent = currentParent.tag === 'text' || currentParent.tag === 'mpx-text' || currentParent.tag === 'Text' || currentParent.tag === 'mpx-simple-text'
|
|
767
|
+
// const isTextLikeParent = currentParent.tag === 'text' || currentParent.tag === 'mpx-text' || currentParent.tag === 'Text' || currentParent.tag === 'mpx-simple-text'
|
|
768
768
|
|
|
769
|
-
if (
|
|
769
|
+
if (currentParent.tag !== 'text') {
|
|
770
770
|
text = text.trim()
|
|
771
771
|
} else {
|
|
772
772
|
text = text.trim() ? text : ''
|