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
|
|
|
|
2014-11-12 08:43:46 -08:00
|
|
|
/*
|
2014-11-21 04:19:20 -08:00
|
|
|
|
2014-11-12 08:47:49 -08:00
|
|
|
TODOS:
|
|
|
|
|
|
|
|
Before the next release, we need to do the following
|
|
|
|
|
|
|
|
- Fix UnCSS support. It is currently commented out
|
|
|
|
- Resolve all image tasks into a single task
|
|
|
|
- Simplify the overall setup. One CSS & JS file output
|
|
|
|
- P0 fix Navigation component. It currently only supports one instance
|
|
|
|
of the navbar. Switching to a loop over qSA here isn't enough, we'll need
|
|
|
|
to rewrite some of the code.
|
2014-11-12 08:43:46 -08:00
|
|
|
*/
|
|
|
|
|
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-07-04 04:35:14 -07:00
|
|
|
var AUTOPREFIXER_BROWSERS = [
|
|
|
|
'ie >= 10',
|
|
|
|
'ie_mob >= 10',
|
|
|
|
'ff >= 30',
|
|
|
|
'chrome >= 34',
|
|
|
|
'safari >= 7',
|
|
|
|
'opera >= 23',
|
|
|
|
'ios >= 7',
|
|
|
|
'android >= 4.4',
|
|
|
|
'bb >= 10'
|
|
|
|
];
|
|
|
|
|
2014-06-19 05:14:21 -07:00
|
|
|
// Lint JavaScript
|
2014-10-14 08:19:35 -07:00
|
|
|
gulp.task('jshint', function() {
|
|
|
|
return gulp.src(['app/scripts/**/*.js', 'app/styleguide/**/*.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
|
2014-10-14 08:19:35 -07:00
|
|
|
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
|
|
|
});
|
|
|
|
|
2014-06-27 19:20:04 -07:00
|
|
|
// Copy All Files At The Root Level (app)
|
2014-10-14 08:19:35 -07:00
|
|
|
gulp.task('copy', function() {
|
2014-08-05 12:59:38 -07:00
|
|
|
return gulp.src([
|
|
|
|
'app/*',
|
|
|
|
'!app/*.html',
|
|
|
|
'node_modules/apache-server-configs/dist/.htaccess'
|
|
|
|
], {
|
|
|
|
dot: true
|
|
|
|
}).pipe(gulp.dest('dist'))
|
2014-06-27 19:20:04 -07:00
|
|
|
.pipe($.size({title: 'copy'}));
|
|
|
|
});
|
|
|
|
|
2014-11-12 08:43:46 -08:00
|
|
|
// Copy image files from the Styleguide
|
|
|
|
gulp.task('styleguide-images', function() {
|
|
|
|
return gulp.src('app/styleguide/**/*.{svg,png,jpg}')
|
|
|
|
.pipe(gulp.dest('dist/styleguide/'))
|
|
|
|
.pipe($.size({title: 'styleguide-images'}));
|
|
|
|
});
|
|
|
|
|
2014-11-21 07:34:07 -08:00
|
|
|
// Copy material design icons to styleguide
|
|
|
|
// Add as a task dep to gulp serve if you want it to run
|
|
|
|
//gulp.task('icons', function() {
|
|
|
|
// return gulp.src('node_modules/material-design-icons/**/*.{svg,png,jpg}')
|
|
|
|
// .pipe(gulp.dest('.tmp/styleguide/material-design-icons'))
|
|
|
|
// .pipe(gulp.dest('dist/styleguide/material-design-icons'))
|
|
|
|
// .pipe($.size({title: 'icons'}));
|
|
|
|
//});
|
|
|
|
|
|
|
|
|
2014-07-08 07:53:00 -07:00
|
|
|
// Copy Web Fonts To Dist
|
2014-10-14 08:19:35 -07:00
|
|
|
gulp.task('fonts', function() {
|
2014-07-08 07:53:00 -07:00
|
|
|
return gulp.src(['app/fonts/**'])
|
|
|
|
.pipe(gulp.dest('dist/fonts'))
|
|
|
|
.pipe($.size({title: 'fonts'}));
|
|
|
|
});
|
|
|
|
|
2014-07-29 16:25:19 -07:00
|
|
|
// Compile and Automatically Prefix Stylesheets
|
2014-10-14 08:19:35 -07:00
|
|
|
gulp.task('styles', function() {
|
2014-07-29 16:25:19 -07:00
|
|
|
// For best performance, don't add Sass partials to `gulp.src`
|
|
|
|
return gulp.src([
|
2014-10-14 08:19:35 -07:00
|
|
|
'app/**/*.scss',
|
|
|
|
'app/styles/**/*.css'
|
|
|
|
])
|
2014-08-20 09:45:25 -07:00
|
|
|
.pipe($.changed('styles', {extension: '.scss'}))
|
|
|
|
.pipe($.rubySass({
|
2014-10-14 08:19:35 -07:00
|
|
|
style: 'expanded',
|
|
|
|
precision: 10
|
|
|
|
})
|
|
|
|
.on('error', console.error.bind(console)))
|
2014-07-04 04:35:14 -07:00
|
|
|
.pipe($.autoprefixer(AUTOPREFIXER_BROWSERS))
|
2014-09-03 03:47:19 -07:00
|
|
|
.pipe(gulp.dest('.tmp'))
|
2014-08-28 09:13:09 -07:00
|
|
|
// Concatenate And Minify Styles
|
|
|
|
.pipe($.if('*.css', $.csso()))
|
2014-09-03 03:47:19 -07:00
|
|
|
.pipe(gulp.dest('dist'))
|
2014-07-29 16:25:19 -07:00
|
|
|
.pipe($.size({title: 'styles'}));
|
2014-06-18 18:37:49 -07:00
|
|
|
});
|
2014-06-18 12:58:06 -07:00
|
|
|
|
2014-11-12 08:43:46 -08:00
|
|
|
|
|
|
|
// Concatenate And Minify JavaScript
|
|
|
|
gulp.task('scripts', function() {
|
|
|
|
return gulp.src('app/styleguide/**/*.js')
|
|
|
|
.pipe($.concat('main.min.js'))
|
|
|
|
.pipe($.uglify({preserveComments: 'some'}))
|
|
|
|
// Output Files
|
|
|
|
.pipe(gulp.dest('dist/scripts'))
|
|
|
|
.pipe($.size({title: 'scripts'}));
|
|
|
|
});
|
|
|
|
|
2014-06-19 05:14:21 -07:00
|
|
|
// Scan Your HTML For Assets & Optimize Them
|
2014-10-14 08:19:35 -07:00
|
|
|
gulp.task('html', function() {
|
2014-08-21 03:07:30 -07:00
|
|
|
var assets = $.useref.assets({searchPath: '{.tmp,app}'});
|
2014-08-01 02:31:51 -07:00
|
|
|
|
2014-11-12 08:43:46 -08:00
|
|
|
return gulp.src('app/**/**/*.html')
|
2014-08-01 02:31:51 -07:00
|
|
|
.pipe(assets)
|
2014-06-20 08:20:44 -07:00
|
|
|
// 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.
|
2014-11-12 08:43:46 -08:00
|
|
|
|
|
|
|
/*.pipe($.if('*.css', $.uncss({
|
2014-06-30 09:52:51 -07:00
|
|
|
html: [
|
|
|
|
'app/index.html',
|
2014-08-20 09:02:58 -07:00
|
|
|
'app/styleguide.html'
|
2014-06-30 09:52:51 -07:00
|
|
|
],
|
|
|
|
// CSS Selectors for UnCSS to ignore
|
|
|
|
ignore: [
|
2014-08-09 18:00:24 -07:00
|
|
|
/.navdrawer-container.open/,
|
2014-06-30 09:52:51 -07:00
|
|
|
/.app-bar.open/
|
|
|
|
]
|
2014-11-12 08:43:46 -08:00
|
|
|
})))*/
|
|
|
|
|
2014-07-07 05:07:57 -07:00
|
|
|
// Concatenate And Minify Styles
|
2014-08-28 09:13:09 -07:00
|
|
|
// In case you are still using useref build blocks
|
2014-07-07 05:07:57 -07:00
|
|
|
.pipe($.if('*.css', $.csso()))
|
2014-08-01 02:31:51 -07:00
|
|
|
.pipe(assets.restore())
|
2014-06-20 08:20:44 -07:00
|
|
|
.pipe($.useref())
|
|
|
|
// Update Production Style Guide Paths
|
|
|
|
.pipe($.replace('components/components.css', 'components/main.min.css'))
|
|
|
|
// Minify Any HTML
|
2014-07-03 07:36:41 -07:00
|
|
|
.pipe($.if('*.html', $.minifyHtml()))
|
2014-06-20 08:20:44 -07:00
|
|
|
// 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-10-14 08:19:35 -07:00
|
|
|
gulp.task('serve', ['styles'], function() {
|
2014-06-26 00:10:04 -07:00
|
|
|
browserSync({
|
2014-06-25 15:14:19 -07:00
|
|
|
notify: false,
|
2014-09-22 03:34:01 -07:00
|
|
|
// Customize the BrowserSync console logging prefix
|
2014-09-22 03:52:32 -07:00
|
|
|
logPrefix: 'WSK',
|
2014-07-22 13:20:39 -07:00
|
|
|
// Run as an https by uncommenting 'https: true'
|
|
|
|
// Note: this uses an unsigned certificate which on first access
|
|
|
|
// will present a certificate warning in the browser.
|
|
|
|
// https: true,
|
2014-09-01 13:25:57 -07:00
|
|
|
server: ['.tmp', 'app']
|
2014-06-20 08:20:44 -07:00
|
|
|
});
|
2014-04-17 05:02:38 -07:00
|
|
|
|
2014-09-26 01:35:37 -07:00
|
|
|
gulp.watch(['app/**/**/**/*.html'], reload);
|
|
|
|
gulp.watch(['app/**/**/**/*.{scss,css}'], ['styles', reload]);
|
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-30 13:18:52 -07:00
|
|
|
// Build and serve the output from the dist build
|
2014-10-14 08:19:35 -07:00
|
|
|
gulp.task('serve:dist', ['default'], function() {
|
2014-06-30 13:23:24 -07:00
|
|
|
browserSync({
|
|
|
|
notify: false,
|
2014-09-22 03:52:32 -07:00
|
|
|
logPrefix: 'WSK',
|
2014-07-22 13:20:39 -07:00
|
|
|
// Run as an https by uncommenting 'https: true'
|
|
|
|
// Note: this uses an unsigned certificate which on first access
|
|
|
|
// will present a certificate warning in the browser.
|
|
|
|
// https: true,
|
2014-11-21 04:21:08 -08:00
|
|
|
server: 'dist',
|
|
|
|
baseDir: "dist"
|
2014-06-30 13:18:52 -07:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-06-19 16:36:01 -07:00
|
|
|
// Build Production Files, the Default Task
|
2014-10-14 08:19:35 -07:00
|
|
|
gulp.task('default', ['clean'], function(cb) {
|
2014-11-12 08:43:46 -08:00
|
|
|
runSequence('styles', ['jshint', 'html', 'scripts', 'images', 'styleguide-images', 'fonts', 'copy'], 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
|
|
|
}));
|
2014-06-27 11:28:08 -07:00
|
|
|
|
2014-06-27 11:43:40 -07:00
|
|
|
// Load custom tasks from the `tasks` directory
|
2014-11-12 08:43:46 -08:00
|
|
|
// try { require('require-dir')('tasks'); } catch (err) { console.error(err); }
|