[React + webpack] hjs-webpack

You can easily spend hours configuring the perfect dev environment with all the latest hotness like ES6 (and beyond) support, hot reloading, and a myriad of other features. 

 

webpack.config.js

var getConfig = require('hjs-webpack');

module.exports = getConfig({
    in: './src/app.js',
    out: 'dist',
    clearBeforeBuild: true
});

 

package.json:

  "scripts": {
    "start": "webpack-dev-server",
    "build": "webpack",
    "deploy": "npm run build && surge -p dist -d somedomain.com"
  },

 

posted @ 2015-09-06 03:13  Zhentiw  阅读(275)  评论(0编辑  收藏  举报