gluppy
v1.2.3
Published
A simpler js-only implementation of glup
Downloads
1
Readme
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
- Normal development build
gulp
- Minified distribution build
gulp --[distribution|distro|dist]
- Force sourcemaps on distribution builds
gulp --[distribution|distro|dist] --sourcemaps
- Prevent bower_components from being included in the build (running solo)
gulp --solo