109 lines
2.8 KiB
JavaScript
109 lines
2.8 KiB
JavaScript
|
'use strict';
|
||
|
|
||
|
var gulp = require('gulp');
|
||
|
|
||
|
// load plugins
|
||
|
var $ = require('gulp-load-plugins')();
|
||
|
|
||
|
gulp.task('styles', function () {
|
||
|
return gulp.src('app/styles/main.scss')
|
||
|
.pipe($.rubySass({
|
||
|
style: 'expanded'
|
||
|
}))
|
||
|
.pipe($.autoprefixer('last 1 version'))
|
||
|
.pipe(gulp.dest('.tmp/styles'))
|
||
|
.pipe($.size());
|
||
|
});
|
||
|
|
||
|
gulp.task('scripts', function () {
|
||
|
return gulp.src('app/scripts/**/*.js')
|
||
|
.pipe($.jshint())
|
||
|
.pipe($.jshint.reporter($.jshintStylish))
|
||
|
.pipe($.size());
|
||
|
});
|
||
|
|
||
|
gulp.task('html', ['styles', 'scripts'], function () {
|
||
|
var jsFilter = $.filter('**/*.js');
|
||
|
var cssFilter = $.filter('**/*.css');
|
||
|
|
||
|
return gulp.src('app/*.html')
|
||
|
.pipe($.useref.assets())
|
||
|
.pipe(jsFilter)
|
||
|
.pipe($.uglify())
|
||
|
.pipe(jsFilter.restore())
|
||
|
.pipe(cssFilter)
|
||
|
.pipe($.csso())
|
||
|
.pipe(cssFilter.restore())
|
||
|
.pipe($.useref.restore())
|
||
|
.pipe($.useref())
|
||
|
.pipe(gulp.dest('dist'))
|
||
|
.pipe($.size());
|
||
|
});
|
||
|
|
||
|
gulp.task('images', function () {
|
||
|
return gulp.src('app/images/**/*')
|
||
|
.pipe($.cache($.imagemin({
|
||
|
optimizationLevel: 3,
|
||
|
progressive: true,
|
||
|
interlaced: true
|
||
|
})))
|
||
|
.pipe(gulp.dest('dist/images'))
|
||
|
.pipe($.size());
|
||
|
});
|
||
|
|
||
|
gulp.task('fonts', function () {
|
||
|
return $.bowerFiles()
|
||
|
.pipe($.filter('**/*.{eot,svg,ttf,woff}'))
|
||
|
.pipe($.flatten())
|
||
|
.pipe(gulp.dest('dist/fonts'))
|
||
|
.pipe($.size());
|
||
|
});
|
||
|
|
||
|
gulp.task('clean', function () {
|
||
|
return gulp.src(['.tmp', 'dist'], { read: false }).pipe($.clean());
|
||
|
});
|
||
|
|
||
|
gulp.task('build', ['html', 'images', 'fonts']);
|
||
|
|
||
|
gulp.task('default', ['clean'], function () {
|
||
|
gulp.start('build');
|
||
|
});
|
||
|
|
||
|
gulp.task('connect', function () {
|
||
|
var connect = require('connect');
|
||
|
var app = connect()
|
||
|
.use(require('connect-livereload')({ port: 35729 }))
|
||
|
.use(connect.static('app'))
|
||
|
.use(connect.static('.tmp'))
|
||
|
.use(connect.directory('app'));
|
||
|
|
||
|
require('http').createServer(app)
|
||
|
.listen(9000)
|
||
|
.on('listening', function () {
|
||
|
console.log('Started connect web server on http://localhost:9000');
|
||
|
});
|
||
|
});
|
||
|
|
||
|
gulp.task('serve', ['connect', 'styles'], function () {
|
||
|
require('opn')('http://localhost:9000');
|
||
|
});
|
||
|
|
||
|
gulp.task('watch', ['connect', 'serve'], function () {
|
||
|
var server = $.livereload();
|
||
|
|
||
|
// watch for changes
|
||
|
|
||
|
gulp.watch([
|
||
|
'app/*.html',
|
||
|
'.tmp/styles/**/*.css',
|
||
|
'app/scripts/**/*.js',
|
||
|
'app/images/**/*'
|
||
|
]).on('change', function (file) {
|
||
|
server.changed(file.path);
|
||
|
});
|
||
|
|
||
|
gulp.watch('app/styles/**/*.scss', ['styles']);
|
||
|
gulp.watch('app/scripts/**/*.js', ['scripts']);
|
||
|
gulp.watch('app/images/**/*', ['images']);
|
||
|
});
|