Skip to content

Commit ac0c1b2

Browse files
committed
v5.1.0
1 parent 8e671ad commit ac0c1b2

File tree

8 files changed

+82
-29
lines changed

8 files changed

+82
-29
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"packages": [
44
"packages/*"
55
],
6-
"version": "5.0.0"
6+
"version": "5.1.0"
77
}
Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,30 @@
11
{
22
"name": "parse5-html-rewriting-stream",
33
"description": "Streaming HTML rewriter.",
4-
"version": "5.0.0",
4+
"version": "5.1.0",
55
"author": "Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin)",
66
"contributors": "https://github.com/inikulin/parse5/graphs/contributors",
77
"homepage": "https://github.com/inikulin/parse5",
8-
"keywords": ["parse5", "parser", "stream", "streaming", "rewritter", "rewrite", "HTML"],
8+
"keywords": [
9+
"parse5",
10+
"parser",
11+
"stream",
12+
"streaming",
13+
"rewritter",
14+
"rewrite",
15+
"HTML"
16+
],
917
"license": "MIT",
1018
"main": "./lib/index.js",
1119
"dependencies": {
12-
"parse5": "^5.0.0",
13-
"parse5-sax-parser": "^5.0.0"
20+
"parse5": "^5.1.0",
21+
"parse5-sax-parser": "^5.1.0"
1422
},
1523
"repository": {
1624
"type": "git",
1725
"url": "git://github.com/inikulin/parse5.git"
1826
},
19-
"files": ["lib"]
27+
"files": [
28+
"lib"
29+
]
2030
}
Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,26 @@
11
{
22
"name": "parse5-htmlparser2-tree-adapter",
33
"description": "htmlparser2 tree adapter for parse5.",
4-
"version": "5.0.0",
4+
"version": "5.1.0",
55
"author": "Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin)",
66
"contributors": "https://github.com/inikulin/parse5/graphs/contributors",
77
"homepage": "https://github.com/inikulin/parse5",
8-
"keywords": ["parse5", "parser", "tree adapter", "htmlparser2"],
8+
"keywords": [
9+
"parse5",
10+
"parser",
11+
"tree adapter",
12+
"htmlparser2"
13+
],
914
"license": "MIT",
1015
"main": "./lib/index.js",
1116
"dependencies": {
12-
"parse5": "^5.0.0"
17+
"parse5": "^5.1.0"
1318
},
1419
"repository": {
1520
"type": "git",
1621
"url": "git://github.com/inikulin/parse5.git"
1722
},
18-
"files": ["lib"]
23+
"files": [
24+
"lib"
25+
]
1926
}
Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,26 @@
11
{
22
"name": "parse5-parser-stream",
33
"description": "Streaming HTML parser with scripting support.",
4-
"version": "5.0.0",
4+
"version": "5.1.0",
55
"author": "Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin)",
66
"contributors": "https://github.com/inikulin/parse5/graphs/contributors",
77
"homepage": "https://github.com/inikulin/parse5",
8-
"keywords": ["parse5", "parser", "stream", "streaming"],
8+
"keywords": [
9+
"parse5",
10+
"parser",
11+
"stream",
12+
"streaming"
13+
],
914
"license": "MIT",
1015
"main": "./lib/index.js",
1116
"dependencies": {
12-
"parse5": "^5.0.0"
17+
"parse5": "^5.1.0"
1318
},
1419
"repository": {
1520
"type": "git",
1621
"url": "git://github.com/inikulin/parse5.git"
1722
},
18-
"files": ["lib"]
23+
"files": [
24+
"lib"
25+
]
1926
}
Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,30 @@
11
{
22
"name": "parse5-plain-text-conversion-stream",
33
"description": "Stream that converts plain text files into HTML document.",
4-
"version": "5.0.0",
4+
"version": "5.1.0",
55
"author": "Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin)",
66
"contributors": "https://github.com/inikulin/parse5/graphs/contributors",
77
"homepage": "https://github.com/inikulin/parse5",
8-
"keywords": ["parse5", "parser", "stream", "streaming", "plain", "text", "plain text"],
8+
"keywords": [
9+
"parse5",
10+
"parser",
11+
"stream",
12+
"streaming",
13+
"plain",
14+
"text",
15+
"plain text"
16+
],
917
"license": "MIT",
1018
"main": "./lib/index.js",
1119
"dependencies": {
12-
"parse5": "^5.0.0",
13-
"parse5-parser-stream": "^5.0.0"
20+
"parse5": "^5.1.0",
21+
"parse5-parser-stream": "^5.1.0"
1422
},
1523
"repository": {
1624
"type": "git",
1725
"url": "git://github.com/inikulin/parse5.git"
1826
},
19-
"files": ["lib"]
27+
"files": [
28+
"lib"
29+
]
2030
}
Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,27 @@
11
{
22
"name": "parse5-sax-parser",
33
"description": "Streaming SAX-style HTML parser.",
4-
"version": "5.0.0",
4+
"version": "5.1.0",
55
"author": "Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin)",
66
"contributors": "https://github.com/inikulin/parse5/graphs/contributors",
77
"homepage": "https://github.com/inikulin/parse5",
8-
"keywords": ["parse5", "parser", "stream", "streaming", "SAX"],
8+
"keywords": [
9+
"parse5",
10+
"parser",
11+
"stream",
12+
"streaming",
13+
"SAX"
14+
],
915
"license": "MIT",
1016
"main": "./lib/index.js",
1117
"dependencies": {
12-
"parse5": "^5.0.0"
18+
"parse5": "^5.1.0"
1319
},
1420
"repository": {
1521
"type": "git",
1622
"url": "git://github.com/inikulin/parse5.git"
1723
},
18-
"files": ["lib"]
24+
"files": [
25+
"lib"
26+
]
1927
}
Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,28 @@
11
{
22
"name": "parse5-serializer-stream",
33
"description": "Streaming HTML serializer.",
4-
"version": "5.0.0",
4+
"version": "5.1.0",
55
"author": "Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin)",
66
"contributors": "https://github.com/inikulin/parse5/graphs/contributors",
77
"homepage": "https://github.com/inikulin/parse5",
8-
"keywords": ["parse5", "parser", "stream", "streaming", "serializer", "serialiser"],
8+
"keywords": [
9+
"parse5",
10+
"parser",
11+
"stream",
12+
"streaming",
13+
"serializer",
14+
"serialiser"
15+
],
916
"license": "MIT",
1017
"main": "./lib/index.js",
1118
"dependencies": {
12-
"parse5": "^5.0.0"
19+
"parse5": "^5.1.0"
1320
},
1421
"repository": {
1522
"type": "git",
1623
"url": "git://github.com/inikulin/parse5.git"
1724
},
18-
"files": ["lib"]
25+
"files": [
26+
"lib"
27+
]
1928
}

packages/parse5/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "parse5",
33
"description": "HTML parser and serializer.",
4-
"version": "5.0.0",
4+
"version": "5.1.0",
55
"author": "Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin)",
66
"contributors": "https://github.com/inikulin/parse5/graphs/contributors",
77
"homepage": "https://github.com/inikulin/parse5",
@@ -28,5 +28,7 @@
2828
"type": "git",
2929
"url": "git://github.com/inikulin/parse5.git"
3030
},
31-
"files": ["lib"]
31+
"files": [
32+
"lib"
33+
]
3234
}

0 commit comments

Comments
 (0)