Skip to content

Commit

Permalink
4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathantneal committed Sep 18, 2018
1 parent ae337a2 commit 9084a34
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
8 changes: 7 additions & 1 deletion .travis.yml
@@ -1,3 +1,9 @@
# https://docs.travis-ci.com/user/travis-lint

language: node_js

node_js:
- 4
- 6

install:
- npm install --ignore-scripts
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
# 4.0.0 - 2018-09-17

- Changed: use PostCSS 7 API

# 3.0.0 - 2017-05-11

- Changed: use PostCSS 6 API
Expand Down
8 changes: 4 additions & 4 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "postcss-font-variant",
"version": "3.0.0",
"version": "4.0.0",
"description": "PostCSS plugin to transform W3C font-variant properties to more compatible CSS (font-feature-settings)",
"keywords": [
"css",
Expand All @@ -21,9 +21,9 @@
},
"devDependencies": {
"jscs": "^3.0.7",
"jshint": "^2.9.4",
"npmpub": "^3.1.0",
"tape": "^4.6.3"
"jshint": "^2.9.6",
"npmpub": "^4.1.0",
"tape": "^4.9.1"
},
"scripts": {
"lint": "npm run jscs && npm run jshint",
Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Expand Up @@ -14,7 +14,7 @@ function compareFixtures(t, name, msg, opts, postcssOpts) {
opts = opts || {}
var actual = postcss().use(plugin(opts)).process(read(postcssOpts.from), postcssOpts).css
var expected = read(filename("fixtures/" + name + ".expected"))
fs.writeFile(filename("fixtures/" + name + ".actual"), actual)
fs.writeFileSync(filename("fixtures/" + name + ".actual"), actual)
t.equal(actual, expected, msg)
}

Expand Down

0 comments on commit 9084a34

Please sign in to comment.