Skip to content

Commit

Permalink
tests: update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
abenezerabebe authored and sendilkumarn committed Mar 16, 2019
1 parent b6c6484 commit ce9fbc8
Showing 1 changed file with 14 additions and 13 deletions.
Expand Up @@ -79,27 +79,28 @@ exports[`terserPlugin transforms correctly using "terserPlugin-3" data 1`] = `
exports[`terserPlugin transforms correctly using "terserPlugin-4" data 1`] = `
"const TerserPlugin = require('terser-webpack-plugin');
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.OccurrenceOrderPlugin()],
Expand Down

0 comments on commit ce9fbc8

Please sign in to comment.