gluppy

1.2.3 • Public • Published

gluppy

A simpler js-only implementation of glup

Setup Your Gulp File

var gluppy = require('gluppy');
 
// Need to specify the paths
var paths = {
    src: `scripts/**/*.js`,
    dest: {
        dev: `build.dev.js`,
        dist: `build.dist.js`
    }
};
 
// Check libs/defaults for what can be set
var options = {
    //
};
 
gluppy(paths, options);

Run Gulp

  1. Normal development build gulp
  2. Minified distribution build gulp --[distribution|distro|dist]
  3. Force sourcemaps on distribution builds gulp --[distribution|distro|dist] --sourcemaps
  4. Prevent bower_components from being included in the build (running solo) gulp --solo

Readme

Keywords

none

Package Sidebar

Install

npm i gluppy

Weekly Downloads

0

Version

1.2.3

License

MIT

Last publish

Collaborators

  • oldtimeguitarguy