Skip to content

Commit

Permalink
fix: move peerDependencies to dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Butterworth committed May 10, 2019
1 parent 21d7fe0 commit 3dd9b25
Show file tree
Hide file tree
Showing 5 changed files with 186 additions and 258 deletions.
6 changes: 3 additions & 3 deletions config/webpack.dev.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// This is the dev Webpack config. All settings here should prefer a fast build
// time at the expense of creating larger, unoptimized bundles.
const Merge = require('webpack-merge');
const Merge = require('webpack-merge'); // eslint-disable-line import/no-extraneous-dependencies
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin'); // eslint-disable-line import/no-extraneous-dependencies
const webpack = require('webpack'); // eslint-disable-line import/no-extraneous-dependencies

const commonConfig = require('./webpack.common.config.js');

Expand Down
4 changes: 2 additions & 2 deletions config/webpack.prod.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// This is the prod Webpack config. All settings here should prefer smaller,
// optimized bundles at the expense of a longer build time.
const Merge = require('webpack-merge');
const Merge = require('webpack-merge'); // eslint-disable-line import/no-extraneous-dependencies
const commonConfig = require('./webpack.common.config.js');
const path = require('path');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin'); // eslint-disable-line import/no-extraneous-dependencies

module.exports = Merge.smart(commonConfig, {
mode: 'production',
Expand Down
Loading

0 comments on commit 3dd9b25

Please sign in to comment.