Skip to content

Commit 9084a34

Browse files
committed
4.0.0
1 parent ae337a2 commit 9084a34

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

.travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# https://docs.travis-ci.com/user/travis-lint
2+
13
language: node_js
4+
25
node_js:
3-
- 4
6+
- 6
7+
8+
install:
9+
- npm install --ignore-scripts

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 4.0.0 - 2018-09-17
2+
3+
- Changed: use PostCSS 7 API
4+
15
# 3.0.0 - 2017-05-11
26

37
- Changed: use PostCSS 6 API

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-font-variant",
3-
"version": "3.0.0",
3+
"version": "4.0.0",
44
"description": "PostCSS plugin to transform W3C font-variant properties to more compatible CSS (font-feature-settings)",
55
"keywords": [
66
"css",
@@ -21,9 +21,9 @@
2121
},
2222
"devDependencies": {
2323
"jscs": "^3.0.7",
24-
"jshint": "^2.9.4",
25-
"npmpub": "^3.1.0",
26-
"tape": "^4.6.3"
24+
"jshint": "^2.9.6",
25+
"npmpub": "^4.1.0",
26+
"tape": "^4.9.1"
2727
},
2828
"scripts": {
2929
"lint": "npm run jscs && npm run jshint",

test/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function compareFixtures(t, name, msg, opts, postcssOpts) {
1414
opts = opts || {}
1515
var actual = postcss().use(plugin(opts)).process(read(postcssOpts.from), postcssOpts).css
1616
var expected = read(filename("fixtures/" + name + ".expected"))
17-
fs.writeFile(filename("fixtures/" + name + ".actual"), actual)
17+
fs.writeFileSync(filename("fixtures/" + name + ".actual"), actual)
1818
t.equal(actual, expected, msg)
1919
}
2020

0 commit comments

Comments
 (0)