1.3.5 • Published 6 years ago

dq-webpack v1.3.5

Weekly downloads
6
License
ISC
Repository
-
Last release
6 years ago

Digitalquill webpack config

This package contains common config for webpack

Usage

```javascript
const buildBaseConfig = require('dq-webpack');

const baseConfig = buildBaseConfig(__dirname, {});

const config = baseConfig.merge({

  entry: {
    myEntry: pathToEntryFile,
  },

  anyOtherWebpackOption: {},

});

// Add custom config for production
if (process.env.APP_ENV === 'production') {
  config.merge({
  });
}

module.exports = config;
```
1.3.5

6 years ago

1.3.4

6 years ago

1.3.3

7 years ago

1.3.2

7 years ago

1.3.1

7 years ago

1.3.0

7 years ago