Skip to content

Commit b980d9b

Browse files
authored
Merge pull request #272 from posthtml/milestone-0.4.5
Milestone 0.4.5
2 parents bca8467 + f4aa225 commit b980d9b

5 files changed

Lines changed: 28 additions & 6 deletions

File tree

changelog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
<a name="0.4.5"></a>
2+
## <small>0.4.5 (2018-03-02)</small>
3+
4+
* 0.4.5 ([c30f72a](https://github.com/posthtml/posthtml-cli/commit/c30f72a))
5+
* Revert "docs: change user name" ([5551a3a](https://github.com/posthtml/posthtml-cli/commit/5551a3a))
6+
* build: add eslint plugin dependencies, close #269 ([8c6b99e](https://github.com/posthtml/posthtml-cli/commit/8c6b99e)), closes [#269](https://github.com/posthtml/posthtml-cli/issues/269)
7+
* build: update changelog ([ada757c](https://github.com/posthtml/posthtml-cli/commit/ada757c))
8+
* build: update depDev ([9d312aa](https://github.com/posthtml/posthtml-cli/commit/9d312aa))
9+
* style: remove log, close #270 ([61133dd](https://github.com/posthtml/posthtml-cli/commit/61133dd)), closes [#270](https://github.com/posthtml/posthtml-cli/issues/270)
10+
11+
12+
113
<a name="0.4.4"></a>
214
## <small>0.4.4 (2018-03-02)</small>
315

package-lock.json

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

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "posthtml-cli",
3-
"version": "0.4.4",
3+
"version": "0.4.5",
44
"description": "CLI for posthtml",
55
"license": "MIT",
66
"repository": "posthtml/posthtml-cli",
@@ -69,6 +69,7 @@
6969
"eslint-config-xo-space": "^0.18.0",
7070
"eslint-plugin-ava": "^4.5.1",
7171
"eslint-plugin-babel": "^4.1.2",
72+
"eslint-plugin-dependencies": "^2.4.0",
7273
"eslint-plugin-html": "^4.0.1",
7374
"eslint-plugin-import": "^2.9.0",
7475
"eslint-plugin-markdown": "^1.0.0-beta.7",
@@ -125,6 +126,7 @@
125126
"eslintConfig": {
126127
"parser": "babel-eslint",
127128
"plugins": [
129+
"dependencies",
128130
"html",
129131
"ava",
130132
"unicorn",

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ $ posthtml --help
6363
[travis-url]: https://travis-ci.org/posthtml/posthtml-cli
6464
[travis-image]: http://img.shields.io/travis/posthtml/posthtml-cli/master.svg?style=flat-square&label=unix
6565

66-
[appveyor]: https://ci.appveyor.com/project/Scrum/posthtml-cli
67-
[appveyor-img]: https://img.shields.io/appveyor/ci/Scrum/posthtml-cli/master.svg?style=flat-square&label=windows
66+
[appveyor]: https://ci.appveyor.com/project/GitScrum/posthtml-cli
67+
[appveyor-img]: https://img.shields.io/appveyor/ci/GitScrum/posthtml-cli/master.svg?style=flat-square&label=windows
6868

6969
[coveralls-url]: https://coveralls.io/r/posthtml/posthtml-cli
7070
[coveralls-image]: http://img.shields.io/coveralls/posthtml/posthtml-cli.svg?style=flat-square

src/cli.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@ const processing = async file => {
6565
const output = await outResolve(file, cli.flags.output);
6666
const config = await cfgResolve(cli.flags);
6767

68-
console.log(config);
69-
7068
makeDir(path.dirname(output))
7169
.then(read.bind(null, file))
7270
.then(html => posthtml(load(config)).process(html))

0 commit comments

Comments
 (0)