Skip to content

karlhepler/gluppy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A simpler js-only implementation of glup

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published