Skip to content

Commit

Permalink
4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathantneal committed May 13, 2019
1 parent fb5ee83 commit d8d4cf6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .rollup.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default {
plugins: [
babel({
presets: [
['@babel/env', { modules: false, targets: { node: 6 } }]
['@babel/env', { modules: false, targets: { node: 8 } }]
]
})
]
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
language: node_js

node_js:
- 6
- 8

install:
- npm install --ignore-scripts
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes to React App Rewire PostCSS

### 4.0.0 (May 12, 2019)

- Updated: Node 8+ compatibility (major)

### 3.0.2 (October 13, 2018)

- Fixed: Issue with loading from postcss.config.js file
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-app-rewire-postcss",
"version": "3.0.2",
"version": "4.0.0",
"description": "Configure PostCSS in Create React App without ejecting",
"author": "Jonathan Neal <[email protected]>",
"license": "CC0-1.0",
Expand All @@ -22,20 +22,20 @@
"test:js": "eslint *.js --cache --ignore-path .gitignore --quiet"
},
"engines": {
"node": ">=6.0.0"
"node": ">=8.0.0"
},
"dependencies": {
"postcss-loader": "^3.0.0"
},
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/preset-env": "7.1.0",
"babel-eslint": "9.0.0",
"eslint": "5.6.0",
"@babel/core": "7.4.4",
"@babel/preset-env": "7.4.4",
"babel-eslint": "10.0.1",
"eslint": "5.16.0",
"eslint-config-dev": "2.0.0",
"pre-commit": "1.2.2",
"rollup": "0.66.5",
"rollup-plugin-babel": "4.0.3"
"rollup": "1.11.3",
"rollup-plugin-babel": "4.3.2"
},
"eslintConfig": {
"extends": "dev",
Expand Down

0 comments on commit d8d4cf6

Please sign in to comment.