0.9.0 • Published 9 years ago

gulp-lodash-autobuild v0.9.0

Weekly downloads
14
License
MIT
Repository
github
Last release
9 years ago

gulp-lodash-autobuild

Create a custom build for Lodash (>= v4.0)

Install

$ npm install --save-dev gulp-lodash-autobuild

Basic Usage

Something like this will compile your Sass files:

'use strict';

const gulp = require('gulp');
const lodashAutobuild = require('gulp-lodash-autobuild');

const options = {
  target: '.tmp/lodash.custom.js',
  settings: {},
  include: ['_.chunk', '_.tap'] // Force include these functions
};

gulp.task('lodash:autobuild', () => {
  return gulp.src('./src/**/*.js', { buffer: false })
    .pipe(lodashAutobuild(options))
    .on('error', function(err) {
      console.log('err: ', err);
    });
});

Note

Lodash chained functions are not properly detected, you may manually include them using options.include. Eg: in _.chain(obj).filter(...), filter won't be detected as a lodash function.

Issues

Lightweight gulp wrapper for lodash-cli, refer to this repo for main issues. Feel free to report bugs or submit a PR.

Test build

Not a proper unit test, but make sure the code work and the file is built.

gulp lodash:autobuild --gulpfile test/lodash-autobuild-test.js

Original code from https://github.com/OneLittleRobot/gulp-lodash-autobuild

0.9.0

9 years ago

0.8.0

9 years ago

0.7.0

9 years ago

0.6.0

9 years ago

0.5.0

9 years ago

0.4.0

9 years ago

0.3.1

10 years ago

0.3.0

10 years ago

0.2.0

10 years ago

0.1.6

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago