Skip to content

Commit ad8c3dc

Browse files
authored
Merge branch 'master' into feat/update-more-deps
2 parents a507cc4 + 8dbd8d9 commit ad8c3dc

File tree

5 files changed

+23
-21
lines changed

5 files changed

+23
-21
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ When you have a local copy of the project up and running, create a new branch wi
3333
git checkout -b patch-1
3434
```
3535

36-
Create Elm App uses [Commitizen](https://github.com/commitizen/cz-cli) and [semantic-release](https://github.com/semantic-release/semantic-release) for release automatization.
36+
Create Elm App uses [Commitizen](https://github.com/commitizen/cz-cli) and [semantic-release](https://github.com/semantic-release/semantic-release) for release automation.
3737

3838
Commit changes by running `npm run cz`
3939

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ platform:
77
environment:
88
matrix:
99
# node.js
10-
- nodejs_version: "8"
1110
- nodejs_version: "12"
11+
- nodejs_version: "14"
1212

1313
matrix:
1414
fast_finish: true

config/webpack.config.dev.js

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -210,13 +210,14 @@ module.exports = {
210210
options: {
211211
// Necessary for external CSS imports to work
212212
// https://github.com/facebook/create-react-app/issues/2677
213-
ident: 'postcss',
214-
plugins: () => [
215-
require('postcss-flexbugs-fixes'),
216-
autoprefixer({
217-
flexbox: 'no-2009',
218-
}),
219-
],
213+
postcssOptions: {
214+
plugins: () => [
215+
require('postcss-flexbugs-fixes'),
216+
autoprefixer({
217+
flexbox: 'no-2009',
218+
}),
219+
],
220+
},
220221
},
221222
},
222223
],

config/webpack.config.prod.js

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -258,13 +258,14 @@ module.exports = {
258258
options: {
259259
// Necessary for external CSS imports to work
260260
// https://github.com/facebook/create-react-app/issues/2677
261-
ident: 'postcss',
262-
plugins: () => [
263-
require('postcss-flexbugs-fixes'),
264-
autoprefixer({
265-
flexbox: 'no-2009',
266-
}),
267-
],
261+
postcssOptions: {
262+
plugins: () => [
263+
require('postcss-flexbugs-fixes'),
264+
autoprefixer({
265+
flexbox: 'no-2009',
266+
}),
267+
],
268+
},
268269
},
269270
},
270271
],

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@babel/preset-env": "7.11.5",
2424
"@babel/runtime": "7.11.2",
2525
"assets-webpack-plugin": "3.9.12",
26-
"autoprefixer": "8.6.5",
26+
"autoprefixer": "10.0.1",
2727
"babel-loader": "8.1.0",
2828
"babel-runtime": "6.26.0",
2929
"case-sensitive-paths-webpack-plugin": "2.3.0",
@@ -44,13 +44,13 @@
4444
"fs-extra": "6.0.1",
4545
"html-webpack-plugin": "4.5.0",
4646
"http-proxy-middleware": "0.21.0",
47-
"mini-css-extract-plugin": "0.11.2",
47+
"mini-css-extract-plugin": "0.12.0",
4848
"minimist": "1.2.5",
4949
"object-assign": "4.1.1",
5050
"optimize-css-assets-webpack-plugin": "5.0.3",
5151
"postcss-flexbugs-fixes": "4.2.1",
52-
"postcss-loader": "3.0.0",
53-
"postcss-safe-parser": "4.0.2",
52+
"postcss-loader": "4.0.3",
53+
"postcss-safe-parser": "5.0.2",
5454
"promise": "8.1.0",
5555
"prompt": "1.0.0",
5656
"react-dev-utils": "6.1.1",
@@ -79,7 +79,7 @@
7979
"eslint-plugin-prettier": "3.1.4",
8080
"husky": "4.3.0",
8181
"lint-staged": "10.4.0",
82-
"mocha": "7.2.0",
82+
"mocha": "8.1.3",
8383
"nightmare": "3.0.2",
8484
"prettier": "2.1.2",
8585
"rimraf": "3.0.2",

0 commit comments

Comments
 (0)