Skip to content

Commit 64c70d3

Browse files
author
halwu(吴浩麟)
committed
fix: parse5 attr value undefined error
1 parent dd24c2f commit 64c70d3

File tree

2 files changed

+15
-12
lines changed

2 files changed

+15
-12
lines changed

lib/util.js

+10-7
Original file line numberDiff line numberDiff line change
@@ -111,23 +111,26 @@ function replaceNodesWithNodes(oldNodes, newNodes = []) {
111111
childNodes.splice(index, 0, ...newNodes);
112112
}
113113

114+
/**
115+
* concat parse5 attrs object like Object.assign
116+
* @param attrsTo
117+
* @param attrsFrom
118+
* @returns {*}
119+
*/
114120
function assignParse5Attrs(attrsTo, attrsFrom) {
115121
attrsFrom.forEach((attrFrom) => {
116122
const index = attrsTo.findIndex((attrTo) => {
117123
return attrTo.name === attrFrom.name;
118124
});
125+
// if find in attrFrom then replace value
119126
if (index >= 0) {
120-
if (attrFrom.value === undefined) {
121-
// remove value's undefined attr
122-
attrsTo.splice(index, 1);
123-
} else {
124-
attrsTo[index].value = attrFrom.value;
125-
}
127+
attrsTo[index].value = attrFrom.value;
126128
} else {
127129
attrsTo.push(attrFrom);
128130
}
129131
});
130-
return attrsTo;
132+
// remove undefined value attr
133+
return attrsTo.filter(attrTo => attrTo.value !== undefined);
131134
}
132135

133136
/**

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-webpack-plugin",
3-
"version": "1.9.0",
3+
"version": "1.9.1",
44
"description": "web plugin for webpack, alternatives for html-webpack-plugin, use HTML as entry",
55
"keywords": [
66
"webpack",
@@ -48,13 +48,13 @@
4848
},
4949
"devDependencies": {
5050
"css-loader": "^0.28.4",
51-
"ejs": "^2.5.6",
52-
"eslint": "^4.2.0",
51+
"ejs": "^2.5.7",
52+
"eslint": "^4.3.0",
5353
"extract-text-webpack-plugin": "^3.0.0",
5454
"file-loader": "^0.11.2",
55-
"html-minifier": "^3.5.2",
55+
"html-minifier": "^3.5.3",
5656
"husky": "^0.14.3",
5757
"style-loader": "^0.18.2",
58-
"webpack-dev-server": "^2.5.1"
58+
"webpack-dev-server": "^2.6.1"
5959
}
6060
}

0 commit comments

Comments
 (0)