You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
362 B

  1. const webpack = require('webpack')
  2. const path = require('path')
  3. const deepMerge = require('deepmerge')
  4. const webpackConfig = require('./webpack-dist-bundle.config.js')
  5. const DEPS_CHECK_DIR = require('./package.json').config.deps_check_dir
  6. module.exports = deepMerge(
  7. webpackConfig, {
  8. output: {
  9. path: path.join(__dirname, DEPS_CHECK_DIR)
  10. }
  11. }
  12. )