1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`loaderOptionsPlugin transforms correctly using "loaderOptionsPlugin-0" data 1`] = `
- "// Do not create LoaderOptionsPlugin is not necessary
- module.exports = {
- plugins: [
- new SomePlugin()
- ]
- }
- "
- `;
- exports[`loaderOptionsPlugin transforms correctly using "loaderOptionsPlugin-1" data 1`] = `
- "module.exports = {
- plugins: [
- new webpack.optimize.UglifyJsPlugin(),
- new webpack.LoaderOptionsPlugin({
- foo: 'bar',
- debug: true,
- minimize: true
- })
- ]
- }
- "
- `;
- exports[`loaderOptionsPlugin transforms correctly using "loaderOptionsPlugin-2" data 1`] = `
- "// Don't modify LoaderOptionsPlugin
- module.exports = {
- plugins: [
- new SomePlugin(),
- new webpack.LoaderOptionsPlugin({
- foo: 'bar'
- })
- ]
- }
- "
- `;
- exports[`loaderOptionsPlugin transforms correctly using "loaderOptionsPlugin-3" data 1`] = `
- "// Don't modify LoaderOptionsPlugin
- const ExtractTextPlugin = require('extract-text-webpack-plugin');
- module.exports = {
- entry: ['./index.js'],
- output: {
- filename: 'bundle.js'
- },
- module: {
- rules: [{
- test: /\\\\.css$/,
- use: ExtractTextPlugin.extract([
- 'css-loader'
- ])
- }]
- },
- }
- "
- `;
|