New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

webpack-production-setup

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webpack-production-setup

cnd prod setup webpack bundler es6 babel sass

  • 5.0.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

webpack-production-setup

a webpack 2 build pipeline focused on production performance and simplicity

Use this template

git clone git@github.com:zeachco/webpack-production-setup.git ./my-project
cd my-project
yarn install # or npm install
npm start # dev server
npm run build #creates a production ready build

Or abstract the files from the structure (still working on it, might not work everwhere)

From your project, run npm install -D webpack-production-setup then in your webpack.config.js write

module.exports = require('wpps/webpack.config.js');

Or you can mutate the config from here too

const wppsConfig = require('wpps/webpack.config.js');
wppsConfig.plugins.push(/* my own plugins */);
wppsConfig.devtool = 'cheap-module-eval-source-map';
module.exports = wppsConfig;

FAQs

Package last updated on 04 Jun 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc