Skip to content

Commit

Permalink
Build: fix linting errors on master (#11428)
Browse files Browse the repository at this point in the history
5018378 broke the build on master because it wasn't rebased onto f6ba633 when the tests were run.
  • Loading branch information
not-an-aardvark committed Feb 22, 2019
1 parent 5018378 commit eb0650b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack.config.js
Expand Up @@ -12,12 +12,12 @@ module.exports = {
module: {
rules: [
{
test: /\.js$/,
test: /\.js$/u,
loader: "babel-loader",
options: {
presets: ["@babel/preset-env"]
},
exclude: /node_modules/
exclude: /node_modules/u
}
]
},
Expand Down

0 comments on commit eb0650b

Please sign in to comment.