From eb0650ba20cf9f9ad78dbaccfeb7e0e7ab56e31d Mon Sep 17 00:00:00 2001 From: Teddy Katz Date: Thu, 21 Feb 2019 21:50:22 -0500 Subject: [PATCH] Build: fix linting errors on master (#11428) 5018378131fd5190bbccca902c0cf4276ee1581a broke the build on master because it wasn't rebased onto f6ba633f56eca6be20fc4b0d9496a78b9498d578 when the tests were run. --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index ab0346d0c67..134a657e758 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -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 } ] },