Skip to content

Commit cf74f47

Browse files
authored
Bump version (#70)
1 parent 1a9637f commit cf74f47

File tree

2 files changed

+22
-21
lines changed

2 files changed

+22
-21
lines changed

.editorconfig

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
1-
# This file is for unifying the coding style for different editors and IDEs
2-
# editorconfig.org
1+
# EditorConfig is awesome: http://EditorConfig.org
32

3+
# top-most EditorConfig file
44
root = true
55

66
[*]
77
charset = utf-8
88
end_of_line = lf
99
indent_style = tab
10+
indent_size = 2
1011
insert_final_newline = true
12+
tab_width = 4
1113
trim_trailing_whitespace = true
14+
block_comment_start = /*
15+
block_comment = *
16+
block_comment_end = */
1217

1318
[*.{cmd,bat}]
1419
end_of_line = crlf
1520

16-
[{package.json,.travis.yml}]
21+
[{package.json,*.yml}]
1722
indent_style = space
18-
indent_size = 2
19-
20-
[*.7zSC]
21-
charset = utf-8-bom

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33
"bugs": {
44
"url": "https://github.com/gucong3000/postcss-unprefix/issues"
55
},
6+
"peerDependencies": {
7+
"postcss": ">=5.0.0"
8+
},
69
"dependencies": {
7-
"autoprefixer": "^8.1.0",
10+
"autoprefixer": "^8.3.0",
811
"known-css-properties": "^0.6.1",
912
"normalize-range": "^0.1.2",
10-
"postcss": "^6.0.19",
1113
"postcss-selector-parser": "^4.0.0",
1214
"postcss-value-parser": "^3.3.0",
1315
"pseudo-classes": "^1.0.0",
@@ -16,15 +18,16 @@
1618
"description": "Unprefixes vendor prefixes in legacy CSS.",
1719
"devDependencies": {
1820
"codecov": "^3.0.0",
19-
"eslint": "^4.18.2",
21+
"eslint": "^4.19.1",
2022
"eslint-config-standard": "^11.0.0",
2123
"eslint-plugin-import": "^2.11.0",
2224
"eslint-plugin-node": "^6.0.1",
2325
"eslint-plugin-promise": "^3.7.0",
24-
"eslint-plugin-standard": "^3.0.1",
25-
"mocha": "^5.1.0",
26-
"nyc": "^11.6.0",
27-
"postcss-less": "^1.1.3",
26+
"eslint-plugin-standard": "^3.1.0",
27+
"mocha": "^5.1.1",
28+
"nyc": "^11.7.1",
29+
"postcss": "^6.0.21",
30+
"postcss-less": "^1.1.5",
2831
"postcss-reporter": "^5.0.0",
2932
"stylelint": "^9.2.0"
3033
},
@@ -41,13 +44,10 @@
4144
"main": "./lib/index",
4245
"name": "postcss-unprefix",
4346
"nyc": {
44-
"lines": 99,
45-
"statements": 99,
47+
"lines": 100,
48+
"statements": 100,
4649
"functions": 100,
47-
"branches": 99,
48-
"include": [
49-
"lib/**/*.js"
50-
],
50+
"branches": 100,
5151
"reporter": [
5252
"lcov",
5353
"text"
@@ -65,5 +65,5 @@
6565
"pretest": "eslint lib test",
6666
"test": "nyc mocha --no-timeouts"
6767
},
68-
"version": "2.1.2"
68+
"version": "2.1.3"
6969
}

0 commit comments

Comments
 (0)