kad-boilerplate
v0.0.8
Published
Some simple boiler plate so I don't have to rewrite build scripts every damn project.
Downloads
21
Readme
kad-boilerplate
Some simple boiler plate so I don't have to rewrite build scripts every damn project.
Usage
This boilerplate relies on gulp
being installed. So first run:
npm install --save-dev gulp kad-boilerplate
Then create gulpfile.js
where you can configure the boilerplate:
var gulp = require('gulp');
require('kad-boilerplate')(gulp, {
paths: {
dest: 'lib',
src: [
'src/**/*.js',
'!src/**/__tests__/**/*.js',
'!src/**/__mocks__/**/*.js',
],
},
});
Then in order to build your project simply run gulp
from the command line.
Commands
build
Builds your project according to the src
, dest
, and babel
options specified.
clean
Cleans the project based on dest
option.
default
Alias for the build
step so that gulp
will work without any arguments.
dist
Compiles everything starting at the file ${entry}
into ${dist}/${name}.js
.
dist:min
Compiles everything starting at the file ${entry}
into ${dist}/${name}.min.js
, and minifies it using uglify
.