48 lines
1.4 KiB
JavaScript
48 lines
1.4 KiB
JavaScript
var concat = require('gulp-concat');
|
|
var gulp = require('gulp');
|
|
var jshint = require('gulp-jshint');
|
|
var minifyCss = require('gulp-minify-css');
|
|
var sourcemaps = require('gulp-sourcemaps');
|
|
var uglify = require('gulp-uglify');
|
|
|
|
var paths = {
|
|
js: [
|
|
'bower_components/underscore/underscore.js',
|
|
'bower_components/handlebars/handlebars.min.js',
|
|
'bower_components/jquery/dist/jquery.min.js',
|
|
'bower_components/fabric/dist/fabric.min.js',
|
|
'bower_components/tinycolor/tinycolor.js',
|
|
'bower_components/bootstrap/dist/js/bootstrap.min.js',
|
|
'bower_components/bootstrap-select/dist/js/bootstrap-select.min.js',
|
|
'js/*.js'
|
|
],
|
|
css: [
|
|
'bower_components/bootstrap/dist/css/bootstrap.min.css',
|
|
'bower_components/bootstrap/dist/css/bootstrap-theme.min.css',
|
|
'bower_components/bootstrap-select/dist/css/bootstrap-select.min.css',
|
|
'css/*.css'
|
|
],
|
|
};
|
|
|
|
gulp.task('lint', function() {
|
|
return gulp.src('js/*.js')
|
|
.pipe(jshint())
|
|
.pipe(jshint.reporter('default'));
|
|
});
|
|
|
|
gulp.task('scripts', function() {
|
|
return gulp.src(paths.js)
|
|
.pipe(concat('scripts.js'))
|
|
.pipe(uglify())
|
|
.pipe(gulp.dest('dist'));
|
|
});
|
|
|
|
gulp.task('styles', function() {
|
|
return gulp.src(paths.css)
|
|
.pipe(concat('styles.css'))
|
|
.pipe(minifyCss())
|
|
.pipe(gulp.dest('dist'));
|
|
});
|
|
|
|
gulp.task('default', ['lint', 'scripts', 'styles']);
|