Skip to content

Commit

Permalink
chore: align file in the same way as other terserPlugin test fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
abenezerabebe authored and sendilkumarn committed Mar 16, 2019
1 parent 73f493f commit b6c6484
Showing 1 changed file with 13 additions and 13 deletions.
@@ -1,22 +1,22 @@
module.exports = {
devtool: "eval",
entry: ["./src/index"],
devtool: 'eval',
entry: [
'./src/index'
],
output: {
path: path.join(__dirname, "dist"),
filename: "index.js"
path: path.join(__dirname, 'dist'),
filename: 'index.js'
},
module: {
loaders: [
{
test: /.js$/,
loaders: ["babel"],
include: path.join(__dirname, "src")
}
]
loaders: [{
test: /.js$/,
loaders: ['babel'],
include: path.join(__dirname, 'src')
}]
},
resolve: {
root: path.resolve("/src"),
modules: ["node_modules"]
root: path.resolve('/src'),
modules: ['node_modules']
},
plugins: [
new webpack.optimize.TerserPlugin({
Expand Down

0 comments on commit b6c6484

Please sign in to comment.