Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

WebackGrowlErrorPlugin

This is a work in Progress

Usage Example

Add to plugins array

var webpack = require('webpack');
var path = require('path');
var WebackGrowlErrorPlugin = require('./js/lib/WebackGrowlErrorPlugin')


module.exports = {
  entry: [
    './js/client.js',
  ],
  devtool: 'eval-source-map',
  output: {
    path: path.join(__dirname, 'assets'),
    filename: 'client.js',
    publicPath: '/assets',
  },

  plugins: [
    new WebackGrowlErrorPlugin(),
    new webpack.NoErrorsPlugin()
  ],

  module: {
    loaders: [
      {
        test: /\.(js|jsx)$/,
        exclude: /(node_modules)/,
        loader: 'babel'
      }
    ]
  }
};

About

simple growl notification for webpack errors

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages