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';
|
2014-06-19 05:14:21 -07:00
|
|
|
|
|
|
|
// Include Gulp & Tools We'll Use
|
2014-04-17 05:02:38 -07:00
|
|
|
var gulp = require('gulp');
|
2014-06-07 10:38:49 -07:00
|
|
|
var $ = require('gulp-load-plugins')();
|
2014-06-21 13:32:57 -07:00
|
|
|
var del = require('del');
|
2014-06-18 18:37:49 -07:00
|
|
|
var runSequence = require('run-sequence');
|
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-19 05:14:21 -07:00
|
|
|
// Lint JavaScript
|
|
|
|
gulp.task('jshint', function () {
|
2014-06-20 08:20:44 -07:00
|
|
|
return gulp.src('app/scripts/**/*.js')
|
2014-06-26 12:32:04 -07:00
|
|
|
.pipe(reload({stream: true, once: true}))
|
2014-06-20 08:20:44 -07:00
|
|
|
.pipe($.jshint())
|
|
|
|
.pipe($.jshint.reporter('jshint-stylish'))
|
2014-06-26 12:32:04 -07:00
|
|
|
.pipe($.if(!browserSync.active, $.jshint.reporter('fail')));
|
2014-06-19 05:14:21 -07:00
|
|
|
});
|
2014-05-07 02:33:42 -07:00
|
|
|
|
2014-06-19 05:14:21 -07:00
|
|
|
// Optimize Images
|
|
|
|
gulp.task('images', function () {
|
2014-06-20 08:20:44 -07:00
|
|
|
return gulp.src('app/images/**/*')
|
|
|
|
.pipe($.cache($.imagemin({
|
|
|
|
progressive: true,
|
|
|
|
interlaced: true
|
|
|
|
})))
|
|
|
|
.pipe(gulp.dest('dist/images'))
|
|
|
|
.pipe($.size({title: 'images'}));
|
2014-06-19 05:14:21 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
// Automatically Prefix CSS
|
2014-06-19 04:21:01 -07:00
|
|
|
gulp.task('styles:css', function () {
|
2014-06-20 08:20:44 -07:00
|
|
|
return gulp.src('app/styles/**/*.css')
|
|
|
|
.pipe($.autoprefixer('last 1 version'))
|
|
|
|
.pipe(gulp.dest('app/styles'))
|
|
|
|
.pipe(reload({stream: true}))
|
|
|
|
.pipe($.size({title: 'styles:css'}));
|
2014-06-19 04:21:01 -07:00
|
|
|
});
|
|
|
|
|
2014-06-19 05:14:21 -07:00
|
|
|
// Compile Sass For Style Guide Components (app/styles/components)
|
2014-06-18 18:37:49 -07:00
|
|
|
gulp.task('styles:components', function () {
|
2014-06-20 08:20:44 -07:00
|
|
|
return gulp.src('app/styles/components/components.scss')
|
|
|
|
.pipe($.rubySass({
|
|
|
|
style: 'expanded',
|
|
|
|
precision: 10,
|
|
|
|
loadPath: ['app/styles/components']
|
|
|
|
}))
|
|
|
|
.pipe($.autoprefixer('last 1 version'))
|
|
|
|
.pipe(gulp.dest('app/styles/components'))
|
|
|
|
.pipe($.size({title: 'styles:components'}));
|
2014-06-19 07:42:10 -07:00
|
|
|
});
|
2014-06-18 18:37:49 -07:00
|
|
|
|
2014-06-19 05:14:21 -07:00
|
|
|
// Compile Any Other Sass Files You Added (app/styles)
|
2014-06-18 18:37:49 -07:00
|
|
|
gulp.task('styles:scss', function () {
|
2014-06-20 08:20:44 -07:00
|
|
|
return gulp.src(['app/styles/**/*.scss', '!app/styles/components/components.scss'])
|
|
|
|
.pipe($.rubySass({
|
|
|
|
style: 'expanded',
|
|
|
|
precision: 10,
|
|
|
|
loadPath: ['app/styles']
|
|
|
|
}))
|
|
|
|
.pipe($.autoprefixer('last 1 version'))
|
|
|
|
.pipe(gulp.dest('.tmp/styles'))
|
|
|
|
.pipe($.size({title: 'styles:scss'}));
|
2014-06-18 18:37:49 -07:00
|
|
|
});
|
2014-06-18 12:58:06 -07:00
|
|
|
|
2014-06-19 05:14:21 -07:00
|
|
|
// Output Final CSS Styles
|
2014-06-18 18:37:49 -07:00
|
|
|
gulp.task('styles', ['styles:components', 'styles:scss', 'styles:css']);
|
|
|
|
|
2014-06-19 05:14:21 -07:00
|
|
|
// Scan Your HTML For Assets & Optimize Them
|
2014-06-18 12:58:06 -07:00
|
|
|
gulp.task('html', function () {
|
2014-06-20 08:20:44 -07:00
|
|
|
return gulp.src('app/**/*.html')
|
|
|
|
.pipe($.useref.assets({searchPath: '{.tmp,app}'}))
|
|
|
|
// Concatenate And Minify JavaScript
|
|
|
|
.pipe($.if('*.js', $.uglify()))
|
|
|
|
// Concatenate And Minify Styles
|
|
|
|
.pipe($.if('*.css', $.csso()))
|
|
|
|
// Remove Any Unused CSS
|
|
|
|
// Note: If not using the Style Guide, you can delete it from
|
|
|
|
// the next line to only include styles your project uses.
|
|
|
|
.pipe($.if('*.css', $.uncss({ html: ['app/index.html','app/styleguide/index.html'] })))
|
|
|
|
.pipe($.useref.restore())
|
|
|
|
.pipe($.useref())
|
|
|
|
// Update Production Style Guide Paths
|
|
|
|
.pipe($.replace('components/components.css', 'components/main.min.css'))
|
|
|
|
// Minify Any HTML
|
|
|
|
.pipe($.minifyHtml())
|
|
|
|
// Output Files
|
|
|
|
.pipe(gulp.dest('dist'))
|
|
|
|
.pipe($.size({title: 'html'}));
|
2014-04-17 05:02:38 -07:00
|
|
|
});
|
|
|
|
|
2014-06-19 05:14:21 -07:00
|
|
|
// Clean Output Directory
|
2014-06-21 13:32:57 -07:00
|
|
|
gulp.task('clean', del.bind(null, ['.tmp', 'dist']));
|
2014-04-17 05:02:38 -07:00
|
|
|
|
2014-06-19 05:14:21 -07:00
|
|
|
// Watch Files For Changes & Reload
|
2014-06-18 12:58:06 -07:00
|
|
|
gulp.task('serve', function () {
|
2014-06-26 00:10:04 -07:00
|
|
|
browserSync({
|
2014-06-25 15:14:19 -07:00
|
|
|
notify: false,
|
2014-06-20 08:20:44 -07:00
|
|
|
server: {
|
2014-06-25 16:57:36 -07:00
|
|
|
baseDir: ['.tmp', 'app']
|
2014-06-25 15:14:19 -07:00
|
|
|
}
|
2014-06-20 08:20:44 -07:00
|
|
|
});
|
2014-04-17 05:02:38 -07:00
|
|
|
|
2014-06-20 08:20:44 -07:00
|
|
|
gulp.watch(['app/**/*.html'], reload);
|
|
|
|
gulp.watch(['app/styles/**/*.{css,scss}'], ['styles']);
|
2014-06-25 19:32:06 -07:00
|
|
|
gulp.watch(['.tmp/styles/**/*.css'], function (e) { reload(e.path); });
|
2014-06-20 08:20:44 -07:00
|
|
|
gulp.watch(['app/scripts/**/*.js'], ['jshint']);
|
2014-06-25 08:07:34 -07:00
|
|
|
gulp.watch(['app/images/**/*'], reload);
|
2014-04-17 05:02:38 -07:00
|
|
|
});
|
2014-06-07 10:38:49 -07:00
|
|
|
|
2014-06-19 16:36:01 -07:00
|
|
|
// Build Production Files, the Default Task
|
2014-06-07 10:38:49 -07:00
|
|
|
gulp.task('default', ['clean'], function (cb) {
|
2014-06-20 08:20:44 -07:00
|
|
|
runSequence('styles', ['jshint', 'html', 'images'], cb);
|
2014-06-07 10:38:49 -07:00
|
|
|
});
|
2014-06-19 05:14:21 -07:00
|
|
|
|
2014-06-19 07:42:10 -07:00
|
|
|
// Run PageSpeed Insights
|
2014-06-19 05:14:21 -07:00
|
|
|
// Update `url` below to the public URL for your site
|
|
|
|
gulp.task('pagespeed', pagespeed.bind(null, {
|
2014-06-20 08:20:44 -07:00
|
|
|
// By default, we use the PageSpeed Insights
|
|
|
|
// 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'
|
|
|
|
url: 'https://example.com',
|
|
|
|
strategy: 'mobile'
|
2014-06-19 05:14:21 -07:00
|
|
|
}));
|