Skip to content

Commit

Permalink
Merge pull request #316 from posthtml/milestone-0.12.1
Browse files Browse the repository at this point in the history
Milestone 0.12.1
  • Loading branch information
Scrum committed Apr 14, 2020
2 parents 473d249 + 74b8b32 commit ea2cbde
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ language: node_js
node_js:
- "stable"
- "lts/*"
- 6
- 10

after_success:
- npm run coverage
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.12.1](https://github.com/posthtml/posthtml/compare/v0.12.0...v0.12.1) (2020-04-14)

## [0.12.0](https://github.com/posthtml/posthtml/compare/v0.11.6...v0.12.0) (2019-10-11)


Expand Down
2 changes: 1 addition & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const walk = (tree) => {
let classes = node.attrs && node.attrs.class.split(' ') || []

if (classes.includes(className)) return cb(node)
return node
return node
})
}
```
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "posthtml",
"version": "0.12.0",
"version": "0.12.1",
"description": "HTML/XML processor",
"keywords": [
"html",
Expand All @@ -20,22 +20,22 @@
"lib"
],
"engines": {
"node": ">=6.0.0"
"node": ">=10.0.0"
},
"dependencies": {
"posthtml-parser": "^0.4.1",
"posthtml-render": "^1.1.5"
"posthtml-parser": "^0.4.2",
"posthtml-render": "^1.2.1"
},
"devDependencies": {
"chai": "^4.0.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"coveralls": "^3.0.6",
"jsdoc-to-markdown": "^5.0.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"standard": "^14.1.0",
"standard-version": "^7.0.0"
"coveralls": "^3.0.11",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"standard": "^14.3.3",
"standard-version": "^7.1.0"
},
"scripts": {
"lint": "standard --env mocha",
Expand Down

0 comments on commit ea2cbde

Please sign in to comment.