Skip to content

Commit 8a7d118

Browse files
authored
Merge pull request #2 from posthtml/milestone-1.1.0
Milestone 1.1.0
2 parents 1b0677b + f77ed1d commit 8a7d118

5 files changed

Lines changed: 47 additions & 22 deletions

File tree

.travis.yaml renamed to .travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ node_js:
44
- v10
55
- v9
66
- v8
7-
- v7
8-
- v6
9-
- v5
10-
- v4
117

128
after_success:
139
- './node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls'

CHANGELOG.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelog.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## 1.1.0 (2019-07-31)
2+
3+
* build: add conventional-changelog-cli ([d6680c9](https://github.com/posthtml/posthtml-webp/commit/d6680c9))
4+
* build: bump ([c53c66e](https://github.com/posthtml/posthtml-webp/commit/c53c66e))
5+
* build: bump ([574fd38](https://github.com/posthtml/posthtml-webp/commit/574fd38))
6+
* build: bump ([aa50a08](https://github.com/posthtml/posthtml-webp/commit/aa50a08))
7+
* build: update hooks and script system ([2940b65](https://github.com/posthtml/posthtml-webp/commit/2940b65))
8+
* chore: rename to upper ([fffa27f](https://github.com/posthtml/posthtml-webp/commit/fffa27f))
9+
* chore: update depDev ([84433e8](https://github.com/posthtml/posthtml-webp/commit/84433e8))
10+
* ci: add travis config ([13d213c](https://github.com/posthtml/posthtml-webp/commit/13d213c))
11+
* ci: drop support old node ([11e929f](https://github.com/posthtml/posthtml-webp/commit/11e929f))
12+
* ci: fix travis config ext ([fd1b18d](https://github.com/posthtml/posthtml-webp/commit/fd1b18d))
13+
* test: replaceExtension feature disabled ([851a714](https://github.com/posthtml/posthtml-webp/commit/851a714))
14+
* test: replaceExtension feature enabled ([8120ad1](https://github.com/posthtml/posthtml-webp/commit/8120ad1))
15+
* test: replaceExtension feature unspecified ([a2c512e](https://github.com/posthtml/posthtml-webp/commit/a2c512e))
16+
* test: style according linter ([c05c33a](https://github.com/posthtml/posthtml-webp/commit/c05c33a))
17+
* feat: Replace file extension instead of appending .webp ([9921f53](https://github.com/posthtml/posthtml-webp/commit/9921f53))
18+
* feat: restore from delete git repository ([f81e404](https://github.com/posthtml/posthtml-webp/commit/f81e404))
19+
* perf: add node 10 and 11 ([2e8f2e0](https://github.com/posthtml/posthtml-webp/commit/2e8f2e0))
20+
* perf: add nyc and coverals ([39625dc](https://github.com/posthtml/posthtml-webp/commit/39625dc))
21+
* fix: path to this pkg ([645e85a](https://github.com/posthtml/posthtml-webp/commit/645e85a))
22+
* docs: add correct pkg name ([74f6789](https://github.com/posthtml/posthtml-webp/commit/74f6789))
23+
24+
25+

package.json

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,36 @@
11
{
22
"name": "posthtml-webp",
33
"description": "Add webp supporting in your html",
4-
"version": "1.0.3",
4+
"version": "1.1.0",
55
"author": "seokirill",
66
"ava": {
77
"verbose": "true"
88
},
99
"bugs": "https://github.com/posthtml/posthtml-webp/issues",
1010
"dependencies": {
11-
"posthtml": "^0.9.0"
11+
"posthtml": "^0.11.4"
1212
},
1313
"devDependencies": {
14-
"ava": "^0.15.2",
15-
"conventional-changelog": "^1.1.0",
16-
"conventional-changelog-lint": "^1.0.0",
17-
"coveralls": "^3.0.2",
18-
"husky": "^0.11.5",
19-
"mversion": "^1.10.1",
20-
"nyc": "^13.1.0",
21-
"snazzy": "^4.0.0",
22-
"standard": "^7.1.2"
14+
"ava": "^2.2.0",
15+
"conventional-changelog": "^3.1.10",
16+
"conventional-changelog-cli": "^2.0.23",
17+
"conventional-changelog-lint": "^2.1.1",
18+
"coveralls": "^3.0.5",
19+
"husky": "^3.0.2",
20+
"mversion": "^1.13.0",
21+
"nyc": "^14.1.1",
22+
"snazzy": "^8.0.0",
23+
"standard": "^13.1.0"
24+
},
25+
"husky": {
26+
"hooks": {
27+
"pre-push": "npm t",
28+
"pre-commit": "npm run lint",
29+
"commit-msg": "conventional-changelog-lint -p angular -e"
30+
}
2331
},
2432
"engines": {
25-
"node": ">=4"
33+
"node": ">=8"
2634
},
2735
"homepage": "https://github.com/posthtml/posthtml-webp",
2836
"keywords": [
@@ -35,9 +43,8 @@
3543
"main": "lib",
3644
"repository": "posthtml/posthtml-webp",
3745
"scripts": {
38-
"commitmsg": "conventional-changelog-lint -p angular -e",
46+
"version": "conventional-changelog -i changelog.md -s -r 0 && git add changelog.md && git commit -m \"build: update changelog\"",
3947
"lint": "standard | snazzy",
40-
"precommit": "npm run lint",
4148
"release-major": "mversion major",
4249
"release-minor": "mversion minor",
4350
"release-patch": "mversion patch",

test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const test = require('ava')
44
const plugin = require('..')
5-
const {readFileSync} = require('fs')
5+
const { readFileSync } = require('fs')
66
const path = require('path')
77
const posthtml = require('posthtml')
88
const fixtures = path.join(__dirname, 'fixtures')

0 commit comments

Comments
 (0)