Skip to content

Commit

Permalink
Update dependencies (#2508)
Browse files Browse the repository at this point in the history
* Update babel dependencies

https://babeljs.io/blog/2020/03/16/7.9.0
https://github.com/babel/babel/releases/tag/v7.9.0
https://github.com/babel/babel-loader/releases/tag/v8.1.0

* Update webpack-contrib dependencies

https://github.com/webpack-contrib/compression-webpack-plugin/blob/master/CHANGELOG.md#310-2020-01-09
https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md#342-2020-01-10
https://github.com/webpack-contrib/file-loader/blob/master/CHANGELOG.md#600-2020-03-17
https://github.com/webpack-contrib/style-loader/blob/master/CHANGELOG.md#113-2020-01-17

* Update webpack and webpack-cli

https://github.com/webpack/webpack/releases/tag/v4.42.1
https://diff.intrinsic.com/webpack-cli/3.3.10/3.3.11

* Update eslint dependencies

https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md#7190---2020-03-06
https://github.com/benmosher/eslint-plugin-import/blob/master/CHANGELOG.md#2201---2020-02-01
https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb/CHANGELOG.md#1810--2020-03-12

* Update postcss dependencies

https://github.com/luisrudge/postcss-flexbugs-fixes/blob/master/CHANGELOG.md#420
https://github.com/postcss/postcss-safe-parser/blob/master/CHANGELOG.md#402

* Update various dependencies

https://diff.intrinsic.com/regenerator-runtime/0.13.3/0.13.5
arcanis/pnp-webpack-plugin@v1.5.0...v1.6.4
https://github.com/Urthen/case-sensitive-paths-webpack-plugin/blob/master/CHANGELOG.md#v230

* Update jest dependency

https://github.com/facebook/jest/blob/master/CHANGELOG.md#2510

* fix sass-loader version >8 options usage to reflect new nested sassOptions

* Update sass-loader to 8.x

https://github.com/webpack-contrib/sass-loader/blob/master/CHANGELOG.md#802-2020-01-13

Co-authored-by: Georg Leciejewski <gl@salesking.eu>
  • Loading branch information
aried3r and schorsch committed Mar 24, 2020
1 parent f107c46 commit 49ead9e
Show file tree
Hide file tree
Showing 3 changed files with 1,662 additions and 1,115 deletions.
44 changes: 22 additions & 22 deletions package.json
Expand Up @@ -12,52 +12,52 @@
"yarn": ">=1 <2"
},
"dependencies": {
"@babel/core": "^7.8.7",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.8.8",
"@babel/plugin-transform-regenerator": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/runtime": "^7.8.7",
"babel-loader": "^8.0.6",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/runtime": "^7.9.2",
"babel-loader": "^8.1.0",
"babel-plugin-dynamic-import-node": "^2.3.0",
"babel-plugin-macros": "^2.8.0",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"compression-webpack-plugin": "^3.0.1",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"compression-webpack-plugin": "^3.1.0",
"core-js": "^3.6.4",
"css-loader": "^3.4.1",
"file-loader": "^5.0.2",
"css-loader": "^3.4.2",
"file-loader": "^6.0.0",
"flatted": "^2.0.1",
"glob": "^7.1.6",
"js-yaml": "^3.13.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"path-complete-extname": "^1.0.0",
"pnp-webpack-plugin": "^1.5.0",
"postcss-flexbugs-fixes": "^4.1.0",
"pnp-webpack-plugin": "^1.6.4",
"postcss-flexbugs-fixes": "^4.2.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-safe-parser": "^4.0.1",
"regenerator-runtime": "^0.13.3",
"sass-loader": "^7.3.1",
"style-loader": "^1.1.2",
"postcss-safe-parser": "^4.0.2",
"regenerator-runtime": "^0.13.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^4.42.0",
"webpack": "^4.42.1",
"webpack-assets-manifest": "^3.1.1",
"webpack-cli": "^3.3.10",
"webpack-cli": "^3.3.11",
"webpack-sources": "^1.4.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"jest": "^24.9.0"
"eslint-plugin-react": "^7.19.0",
"jest": "^25.1.0"
},
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/))\\.jsx?$",
Expand Down
7 changes: 6 additions & 1 deletion package/rules/sass.js
Expand Up @@ -4,6 +4,11 @@ const { resolved_paths: includePaths } = require('../config')
module.exports = getStyleRule(/\.(scss|sass)(\.erb)?$/i, false, [
{
loader: 'sass-loader',
options: { sourceMap: true, includePaths }
options: {
sourceMap: true,
sassOptions: {
includePaths
}
}
}
])

0 comments on commit 49ead9e

Please sign in to comment.