Skip to content

Commit d23bf91

Browse files
authored
Merge pull request #90 from posthtml/milestone-1.4.3
Milestone 1.4.3
2 parents 11c7eab + ddf2616 commit d23bf91

File tree

4 files changed

+25
-19
lines changed

4 files changed

+25
-19
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [1.4.3](https://github.com/posthtml/posthtml-expressions/compare/v1.4.2...v1.4.3) (2020-06-25)
2+
3+
4+
### Bug Fixes
5+
6+
* clear raw tag after expression, close [#82](https://github.com/posthtml/posthtml-expressions/issues/82) ([2aaef58](https://github.com/posthtml/posthtml-expressions/commit/2aaef5867c0f7971358226f125b288e9de4d021c))
7+
8+
9+
110
<a name="1.1.0"></a>
211
# [1.1.0](https://github.com/posthtml/posthtml-expressions/compare/v1.0.0...v1.1.0) (2016-12-14)
312

lib/index.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -397,9 +397,7 @@ function walk (opts, nodes) {
397397
}, [])
398398
}
399399

400-
401-
function clearRawTag(tree) {
402-
400+
function clearRawTag (tree) {
403401
return tree.reduce((m, node) => {
404402
if (node.content) {
405403
node.content = clearRawTag(node.content)
@@ -413,5 +411,4 @@ function clearRawTag(tree) {
413411

414412
return m
415413
}, [])
416-
417414
}

package-lock.json

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "posthtml-expressions",
3-
"version": "1.4.2",
3+
"version": "1.4.3",
44
"description": "Expressions Plugin for PostHTML",
55
"engines": {
66
"node": ">=10"
@@ -9,7 +9,7 @@
99
"scripts": {
1010
"lint": "standard",
1111
"test": "nyc ava",
12-
"logs": "standard-changelog -i CHANGELOG.md -w",
12+
"version": "standard-changelog -i CHANGELOG.md -w",
1313
"docs": "jsdoc2md lib/*.js > INDEX.md",
1414
"clean": "rm -rf .nyc_output coverage jsdoc-api dmd",
1515
"start": "sudo npm run clean && npm run lint && sudo npm test"
@@ -22,8 +22,8 @@
2222
"coveralls": "^3.1.0",
2323
"jsdoc-to-markdown": "^6.0.1",
2424
"nyc": "^15.1.0",
25-
"posthtml": "^0.13.0",
26-
"posthtml-beautify": "^0.6.0",
25+
"posthtml": "^0.13.1",
26+
"posthtml-beautify": "^0.7.0",
2727
"standard": "^14.3.4",
2828
"standard-changelog": "^2.0.24"
2929
},

0 commit comments

Comments
 (0)