Skip to content

Commit

Permalink
fix linting issues due to indents being spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
nerrad committed Feb 1, 2019
1 parent e5173e4 commit cf9fd1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ common.forEach( ( config, index ) => {
common[ index ] = merge( config, {
devtool: 'inline-source-map',
plugins: [
new CleanWebpackPlugin( [ 'assets/dist' ] ),
new CleanWebpackPlugin( [ 'assets/dist' ] ),
new WebpackAssetsManifest( {
output: path.resolve( __dirname,
'assets/dist/build-manifest.json',
Expand Down
2 changes: 1 addition & 1 deletion webpack.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const assetsData = Object.create( null );
common.forEach( ( config, index ) => {
common[ index ] = merge( config, {
plugins: [
new CleanWebpackPlugin( [ 'assets/dist', 'translation-map.json' ] ),
new CleanWebpackPlugin( [ 'assets/dist', 'translation-map.json' ] ),
new webpack.DefinePlugin( {
'process.env': {
NODE_ENV: JSON.stringify( 'production' ),
Expand Down

0 comments on commit cf9fd1c

Please sign in to comment.