1.0.0 • Published 8 years ago

lookly-preset-webpack v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 years ago

lookly-preset-webpack

Wrapper around webpack for ease of use and zero configuration.

usage

You can easily attach webpack checker to your gulpfile.

const gulp = require('gulp');
const webpack = require('lookly-preset-webpack');

gulp.task('lint', function gulpWebpackTask() {
  return webpack([
    './web_modules/index.entry.js'
  ]);
});