# n-webpack **Repository Path**: mirrors_Financial-Times/n-webpack ## Basic Information - **Project Name**: n-webpack - **Description**: DEPRECATED - Build the webpack.config.js of your dreams :relaxed: - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-07-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # n-webpack has been deprecated & is now archived Build the webpack.config.js of your dreams :relaxed: ``` 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']`