2014-06-09 06:02:39 -07:00
|
|
|
/**
|
|
|
|
*
|
2014-06-09 01:56:26 -07:00
|
|
|
* Web Starter Kit
|
|
|
|
* Copyright 2014 Google Inc. All rights reserved.
|
2014-06-09 06:02:39 -07:00
|
|
|
*
|
2014-06-09 01:56:26 -07:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2014-06-09 06:02:39 -07:00
|
|
|
*
|
2014-06-09 01:56:26 -07:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2014-06-09 06:02:39 -07:00
|
|
|
*
|
2014-06-09 01:56:26 -07:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License
|
2014-06-09 06:02:39 -07:00
|
|
|
*
|
2014-06-09 01:56:26 -07:00
|
|
|
*/
|
2014-06-09 06:02:39 -07:00
|
|
|
|
2014-04-17 05:02:38 -07:00
|
|
|
'use strict';
|
|
|
|
var gulp = require('gulp');
|
2014-06-07 10:38:49 -07:00
|
|
|
var $ = require('gulp-load-plugins')();
|
2014-06-07 10:42:01 -07:00
|
|
|
var rimraf = require('rimraf');
|
2014-05-06 05:47:36 -07:00
|
|
|
var browserSync = require('browser-sync');
|
2014-06-06 03:59:34 -07:00
|
|
|
var pagespeed = require('psi');
|
2014-05-06 05:47:36 -07:00
|
|
|
var reload = browserSync.reload;
|
2014-04-17 05:02:38 -07:00
|
|
|
|
2014-06-07 10:38:49 -07:00
|
|
|
// public URL for your website
|
|
|
|
var PUBLIC_URL = 'https://example.com';
|
2014-05-07 02:33:42 -07:00
|
|
|
|
2014-06-18 12:58:06 -07:00
|
|
|
function styles(destination) {
|
|
|
|
return function () {
|
|
|
|
return gulp.src('app/styles/**/*.{css,scss}')
|
|
|
|
.pipe($.if('*.scss', $.rubySass({
|
|
|
|
style: 'expanded',
|
|
|
|
precision: 10,
|
|
|
|
loadPath: ['app/styles', 'app/styles/components']
|
|
|
|
})))
|
2014-06-18 17:12:36 -07:00
|
|
|
.pipe($.autoprefixer('last 1 version'))
|
2014-06-18 12:58:06 -07:00
|
|
|
.pipe(gulp.dest(destination + '/styles'))
|
|
|
|
.pipe($.if('*.css', reload({stream: true})))
|
|
|
|
.pipe($.size({title: 'styles'}));
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
gulp.task('styles-app', styles('app'));
|
|
|
|
gulp.task('styles-dist', styles('dist'));
|
2014-04-17 05:02:38 -07:00
|
|
|
|
2014-05-28 04:07:50 -07:00
|
|
|
gulp.task('jshint', function () {
|
2014-06-06 05:01:17 -07:00
|
|
|
return gulp.src('app/scripts/**/*.js')
|
2014-04-17 05:02:38 -07:00
|
|
|
.pipe($.jshint())
|
2014-05-16 01:18:34 -07:00
|
|
|
.pipe($.jshint.reporter('jshint-stylish'))
|
|
|
|
.pipe($.jshint.reporter('fail'))
|
2014-06-07 11:12:26 -07:00
|
|
|
.pipe(reload({stream: true, once: true}));
|
2014-04-17 05:02:38 -07:00
|
|
|
});
|
|
|
|
|
2014-06-18 12:58:06 -07:00
|
|
|
gulp.task('html', function () {
|
2014-06-06 05:01:17 -07:00
|
|
|
return gulp.src('app/**/*.html')
|
2014-04-17 05:02:38 -07:00
|
|
|
.pipe($.useref.assets())
|
2014-06-07 10:34:02 -07:00
|
|
|
.pipe($.if('*.js', $.uglify()))
|
|
|
|
.pipe($.if('*.css', $.csso()))
|
2014-06-10 05:23:49 -07:00
|
|
|
.pipe($.if('*.css', $.uncss({ html: ['app/index.html'] })))
|
2014-04-17 05:02:38 -07:00
|
|
|
.pipe($.useref.restore())
|
|
|
|
.pipe($.useref())
|
2014-06-12 05:20:49 -07:00
|
|
|
.pipe($.minifyHtml())
|
2014-06-06 05:01:17 -07:00
|
|
|
.pipe(gulp.dest('dist'))
|
2014-06-07 10:54:45 -07:00
|
|
|
.pipe($.size({title: 'html'}));
|
2014-04-17 05:02:38 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('images', function () {
|
2014-06-06 05:01:17 -07:00
|
|
|
return gulp.src('app/images/**/*')
|
2014-04-17 05:02:38 -07:00
|
|
|
.pipe($.cache($.imagemin({
|
|
|
|
progressive: true,
|
|
|
|
interlaced: true
|
|
|
|
})))
|
2014-06-06 05:01:17 -07:00
|
|
|
.pipe(gulp.dest('dist/images'))
|
2014-05-06 05:47:36 -07:00
|
|
|
.pipe(reload({stream: true, once: true}))
|
2014-06-07 10:54:45 -07:00
|
|
|
.pipe($.size({title: 'images'}));
|
2014-04-17 05:02:38 -07:00
|
|
|
});
|
|
|
|
|
2014-06-07 10:59:39 -07:00
|
|
|
gulp.task('pagespeed', pagespeed.bind(null, {
|
2014-06-09 02:09:12 -07:00
|
|
|
// By default, we use the free (no API key) tier
|
|
|
|
// You can use a Google Developer API key if you
|
|
|
|
// have one. See http://goo.gl/RkN0vE for info
|
|
|
|
// key: 'YOUR_API_KEY'
|
2014-06-07 10:59:39 -07:00
|
|
|
url: PUBLIC_URL,
|
|
|
|
strategy: 'mobile'
|
|
|
|
}));
|
2014-05-07 02:33:42 -07:00
|
|
|
|
2014-06-07 10:42:01 -07:00
|
|
|
gulp.task('clean', rimraf.bind(null, 'dist'));
|
2014-04-17 05:02:38 -07:00
|
|
|
|
2014-06-18 12:58:06 -07:00
|
|
|
gulp.task('serve', function () {
|
2014-05-06 05:47:36 -07:00
|
|
|
browserSync.init(null, {
|
|
|
|
server: {
|
2014-06-07 10:38:49 -07:00
|
|
|
baseDir: ['app']
|
2014-06-09 07:24:30 -07:00
|
|
|
},
|
|
|
|
notify: false
|
2014-05-06 05:47:36 -07:00
|
|
|
});
|
2014-04-17 05:02:38 -07:00
|
|
|
|
2014-06-10 05:23:49 -07:00
|
|
|
gulp.watch(['app/**/*.html'], reload);
|
2014-06-18 12:58:06 -07:00
|
|
|
gulp.watch(['app/styles/**/*.scss'], ['styles-app']);
|
2014-06-10 10:40:23 -07:00
|
|
|
gulp.watch(['app/styles/**/*.css'], reload);
|
2014-06-07 10:51:04 -07:00
|
|
|
gulp.watch(['app/scripts/**/*.js'], ['jshint']);
|
|
|
|
gulp.watch(['app/images/**/*'], ['images']);
|
2014-04-17 05:02:38 -07:00
|
|
|
});
|
2014-06-07 10:38:49 -07:00
|
|
|
|
2014-06-18 12:58:06 -07:00
|
|
|
gulp.task('build', ['jshint', 'styles-dist', 'html', 'images']);
|
2014-06-07 10:38:49 -07:00
|
|
|
|
|
|
|
gulp.task('default', ['clean'], function (cb) {
|
|
|
|
gulp.start('build', cb);
|
|
|
|
});
|