Skip to content

reapp/reapp-pack

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

reapp-pack

A helper for generating webpack configs, along with some small helpers. Includes ./webpackServer for easy use of webpack-dev-server.

Based heavily on the official webpack/react-starter repo.

Webpack is just an export of the version of webpack used in this repository.

Usage

See required files in ./config.

var config = require('./config/webpack.run.js');
var webpackServer = require('reapp-pack/webpackServer');

webpackServer(config, {
  port: 3011,
  debug: true,
  hot: true
});

Options

See ./index.js.