Skip to content

Commit a2f0b2d

Browse files
authored
Merge pull request #289 from posthtml/milestone-0.5.0
Milestone 0.5.0
2 parents 4985d9f + 0199026 commit a2f0b2d

31 files changed

+370
-14201
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ charset = utf-8
88
trim_trailing_whitespace = true
99
insert_final_newline = true
1010

11-
[{package.json,*.yml,*.jade,*.pss,*.css,*.js}]
11+
[*.{json,yml,jade,pss,css,html,js}]
1212
indent_size = 2
1313

1414
[changelog.md]

.eslintrc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"parser": "babel-eslint",
3+
"plugins": [
4+
"html",
5+
"ava",
6+
"unicorn",
7+
"babel",
8+
"markdown"
9+
],
10+
"extends": [
11+
"plugin:unicorn/recommended",
12+
"plugin:ava/recommended",
13+
"xo",
14+
"xo-space"
15+
],
16+
"rules": {
17+
"capitalized-comments": "off"
18+
}
19+
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
node_modules
22
.nyc_output
33
npm-debug.log
4+
package-lock.json
45
coverage
56
lib

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
language: node_js
22
node_js:
3-
- v11
4-
- v10
5-
- v9
6-
- v8
3+
- "node"
4+
- "lts/*"
5+
- 10
6+
- 8
77

88
after_success:
9-
- './node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls'
9+
- npm run coverage

changelog.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,38 @@
1+
## 0.5.0 (2019-06-27)
2+
3+
* build: fix linter ([50e592d](https://github.com/posthtml/posthtml-cli/commit/50e592d))
4+
* build: npm lock to false ([43f1f4b](https://github.com/posthtml/posthtml-cli/commit/43f1f4b))
5+
* build: perf script for changelog ([e963ea9](https://github.com/posthtml/posthtml-cli/commit/e963ea9))
6+
* build: update config for chgngelog ([de5ff40](https://github.com/posthtml/posthtml-cli/commit/de5ff40))
7+
* build: update config for editor ([33ffa69](https://github.com/posthtml/posthtml-cli/commit/33ffa69))
8+
* build: update depDev ([4f5cbb5](https://github.com/posthtml/posthtml-cli/commit/4f5cbb5))
9+
* build(deps): bump handlebars from 4.1.0 to 4.1.2 ([41d500a](https://github.com/posthtml/posthtml-cli/commit/41d500a))
10+
* build(deps): bump js-yaml from 3.12.0 to 3.13.1 ([7cd5a58](https://github.com/posthtml/posthtml-cli/commit/7cd5a58))
11+
* test: fix config name ([7c878c3](https://github.com/posthtml/posthtml-cli/commit/7c878c3))
12+
* test: fixed after add config plugins, #288 ([8ec280f](https://github.com/posthtml/posthtml-cli/commit/8ec280f)), closes [#288](https://github.com/posthtml/posthtml-cli/issues/288)
13+
* test: for config io, #280, #256 ([0bb76e4](https://github.com/posthtml/posthtml-cli/commit/0bb76e4)), closes [#280](https://github.com/posthtml/posthtml-cli/issues/280) [#256](https://github.com/posthtml/posthtml-cli/issues/256)
14+
* test: for two key use ([85f927d](https://github.com/posthtml/posthtml-cli/commit/85f927d))
15+
* test: skip test replace for windows ([d423b70](https://github.com/posthtml/posthtml-cli/commit/d423b70))
16+
* ci: normalize path for windows ([624c4ce](https://github.com/posthtml/posthtml-cli/commit/624c4ce))
17+
* ci: try fix for windows ([e39cdbe](https://github.com/posthtml/posthtml-cli/commit/e39cdbe))
18+
* ci: update coverals script trigger ([dee2e5b](https://github.com/posthtml/posthtml-cli/commit/dee2e5b))
19+
* docs: add simpl example options ([bd27aee](https://github.com/posthtml/posthtml-cli/commit/bd27aee))
20+
* docs: correct according change config ([32f9f96](https://github.com/posthtml/posthtml-cli/commit/32f9f96))
21+
* docs: update options example ([c6231c7](https://github.com/posthtml/posthtml-cli/commit/c6231c7))
22+
* docs: update path to readme ([5c5518f](https://github.com/posthtml/posthtml-cli/commit/5c5518f))
23+
* feat: add config plugins, #288 ([de59985](https://github.com/posthtml/posthtml-cli/commit/de59985)), closes [#288](https://github.com/posthtml/posthtml-cli/issues/288)
24+
* feat: add io in config, close #280, close #256 ([e3222b8](https://github.com/posthtml/posthtml-cli/commit/e3222b8)), closes [#280](https://github.com/posthtml/posthtml-cli/issues/280) [#256](https://github.com/posthtml/posthtml-cli/issues/256)
25+
* perf: change to cosmiconfig ([05f1b04](https://github.com/posthtml/posthtml-cli/commit/05f1b04))
26+
* refactor: remove post-load-plugins, close #287, close #286, close #275 ([5e62b38](https://github.com/posthtml/posthtml-cli/commit/5e62b38)), closes [#287](https://github.com/posthtml/posthtml-cli/issues/287) [#286](https://github.com/posthtml/posthtml-cli/issues/286) [#275](https://github.com/posthtml/posthtml-cli/issues/275)
27+
28+
29+
130
## <small>0.4.9 (2019-04-01)</small>
231

32+
* 0.4.9 ([f0e376c](https://github.com/posthtml/posthtml-cli/commit/f0e376c))
333
* build: drop support old node ([efe8508](https://github.com/posthtml/posthtml-cli/commit/efe8508))
434
* build: update build scripts ([692272f](https://github.com/posthtml/posthtml-cli/commit/692272f))
35+
* build: update changelog ([6ea8d34](https://github.com/posthtml/posthtml-cli/commit/6ea8d34))
536
* build: update changelog ([0014038](https://github.com/posthtml/posthtml-cli/commit/0014038))
637
* build: update depdev ([e1cde86](https://github.com/posthtml/posthtml-cli/commit/e1cde86))
738
* ci: drop support old node ([2a4367c](https://github.com/posthtml/posthtml-cli/commit/2a4367c))

0 commit comments

Comments
 (0)