Skip to content
This repository has been archived by the owner on Dec 12, 2017. It is now read-only.
/ n-webpack Public archive

DEPRECATED - Build the webpack.config.js of your dreams ☺️

Notifications You must be signed in to change notification settings

Financial-Times/n-webpack

Repository files navigation

n-webpack has been deprecated & is now archived

Build the webpack.config.js of your dreams ☺️

const nWebpack = require('@financial-times/n-webpack');

exports a function accepting the following options:

  • withBabelPolyfills: default true - Includes babel's core-js polyfills in your js bundle
  • ECMAScriptVersion: default 5 - ES version to compile down to
  • entry: Object used to configure webpack's entry points
  • includes|include: Array of files/directories/globs to run babelifying over (in addition to ./client, ./shared, ./bower_components, which are included by default)
  • excludes|exclude: Array of files/directories/globs to exclude from babelification
  • output: options passed in to webpack output. default {filename: '[name]'}
  • env: prod or dev, to force dev or prod build
  • outputStats: a filename to output stats about the build to
  • babelPlugins: an array of extra babel plugins to apply, e.g. babelPlugins: ['transform-async-to-generator']