Skip to content
This repository was archived by the owner on Jan 16, 2023. It is now read-only.

Commit d8d4cf6

Browse files
committed
4.0.0
1 parent fb5ee83 commit d8d4cf6

4 files changed

Lines changed: 14 additions & 10 deletions

File tree

.rollup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default {
99
plugins: [
1010
babel({
1111
presets: [
12-
['@babel/env', { modules: false, targets: { node: 6 } }]
12+
['@babel/env', { modules: false, targets: { node: 8 } }]
1313
]
1414
})
1515
]

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
language: node_js
44

55
node_js:
6-
- 6
6+
- 8
77

88
install:
99
- npm install --ignore-scripts

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes to React App Rewire PostCSS
22

3+
### 4.0.0 (May 12, 2019)
4+
5+
- Updated: Node 8+ compatibility (major)
6+
37
### 3.0.2 (October 13, 2018)
48

59
- Fixed: Issue with loading from postcss.config.js file

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-app-rewire-postcss",
3-
"version": "3.0.2",
3+
"version": "4.0.0",
44
"description": "Configure PostCSS in Create React App without ejecting",
55
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
66
"license": "CC0-1.0",
@@ -22,20 +22,20 @@
2222
"test:js": "eslint *.js --cache --ignore-path .gitignore --quiet"
2323
},
2424
"engines": {
25-
"node": ">=6.0.0"
25+
"node": ">=8.0.0"
2626
},
2727
"dependencies": {
2828
"postcss-loader": "^3.0.0"
2929
},
3030
"devDependencies": {
31-
"@babel/core": "7.1.2",
32-
"@babel/preset-env": "7.1.0",
33-
"babel-eslint": "9.0.0",
34-
"eslint": "5.6.0",
31+
"@babel/core": "7.4.4",
32+
"@babel/preset-env": "7.4.4",
33+
"babel-eslint": "10.0.1",
34+
"eslint": "5.16.0",
3535
"eslint-config-dev": "2.0.0",
3636
"pre-commit": "1.2.2",
37-
"rollup": "0.66.5",
38-
"rollup-plugin-babel": "4.0.3"
37+
"rollup": "1.11.3",
38+
"rollup-plugin-babel": "4.3.2"
3939
},
4040
"eslintConfig": {
4141
"extends": "dev",

0 commit comments

Comments
 (0)