1
restaurant-search/client/gulpfile.js
2014-09-30 17:40:31 +09:00

59 lines
1.7 KiB
JavaScript

var concat = require('gulp-concat');
var gulp = require('gulp');
var inject = require('gulp-inject');
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'
],
html: [
'./html/*.html'
]
};
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('pages', function() {
var sources = gulp.src(paths.js.concat(paths.css), { read: false });
return gulp.src(paths.html)
.pipe(inject(sources))
.pipe(gulp.dest('./'));
});
gulp.task('default', ['lint', 'scripts', 'styles', 'pages']);