Skip to content
This repository has been archived by the owner on Aug 10, 2021. It is now read-only.

substantial/webpack-parts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DEPRECATION NOTICE

webpack-parts was created before we knew about webpack-blocks which is the same idea but more established. Please use it instead as we will be porting to that and nuking webpack-parts.

webpack-parts

Build your webpack config from composable and opinionated parts.

Installation

$ yarn add --dev webpack-parts

Usage

Combine multiple webpack parts into a webpack config. A part is either an object, which will be merged in to the config, or it is a function that takes the config as it is and is expected to return a new version of the config. The parts are resolved in the order they are provided. There is a small base config that combine starts with that looks like this in production (chunkhash will be omitted if NODE_ENV !== 'production'):

{
  output: {
    filename: '[name].[chunkhash].js',
    chunkFilename: '[name].[chunkhash].js',
    publicPath: '/'
  }
}

Read the documentation to see the various parts that can be used.

Example

// webpack.config.js
const parts = require('webpack-parts')

module.exports = parts.combine(
  {
    entry: "app/index.js",
    output: {
      path: "build"
    }
  },
  parts.load.js(),
  parts.load.css(),
  parts.dev.sourceMaps(),
  parts.optimize.minimize()
)

About

Build your webpack config from composable and opinionated parts

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published