material-design-lite/gulpfile.js

204 lines
5.9 KiB
JavaScript
Raw Normal View History

/**
*
* Web Starter Kit
2015-01-06 05:36:47 -08:00
* Copyright 2015 Google Inc. All rights reserved.
*
* 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-10-22 06:14:09 -07:00
* https://www.apache.org/licenses/LICENSE-2.0
*
* 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-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')();
var del = require('del');
2014-06-18 18:37:49 -07:00
var runSequence = require('run-sequence');
var browserSync = require('browser-sync');
2014-06-06 03:59:34 -07:00
var pagespeed = require('psi');
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() {
return gulp.src(['app/scripts/**/*.js', 'app/styleguide/**/*.js'])
.pipe(reload({stream: true, once: true}))
2014-06-20 08:20:44 -07:00
.pipe($.jshint())
.pipe($.jshint.reporter('jshint-stylish'))
.pipe($.if(!browserSync.active, $.jshint.reporter('fail')));
2014-06-19 05:14:21 -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
});
// Copy All Files At The Root Level (app)
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'))
.pipe($.size({title: 'copy'}));
});
// 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-07-08 07:53:00 -07:00
// Copy Web Fonts To Dist
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'}));
});
// Compile and Automatically Prefix Stylesheets
gulp.task('styles', function() {
var AUTOPREFIXER_BROWSERS = [
'ie >= 10',
'ie_mob >= 10',
'ff >= 30',
'chrome >= 34',
'safari >= 7',
'opera >= 23',
'ios >= 7',
'android >= 4.4',
'bb >= 10'
];
// For best performance, don't add Sass partials to `gulp.src`
return gulp.src([
'app/**/*.scss',
'app/styles/**/*.css'
])
.pipe($.changed('styles', {extension: '.scss'}))
2014-11-25 03:22:05 -08:00
.pipe($.sass({
precision: 10,
onError: console.error.bind(console, 'Sass error:')
}))
.pipe($.autoprefixer(AUTOPREFIXER_BROWSERS))
2014-09-03 03:47:19 -07:00
.pipe(gulp.dest('.tmp'))
// Concatenate And Minify Styles
.pipe($.if('*.css', $.csso()))
2014-09-03 03:47:19 -07:00
.pipe(gulp.dest('dist'))
.pipe($.size({title: 'styles'}));
2014-06-18 18:37:49 -07:00
});
2014-06-18 12:58:06 -07:00
// Concatenate And Minify JavaScript
gulp.task('scripts', function() {
2015-01-06 04:50:48 -08:00
return gulp.src(['app/scripts/**/*.js', '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
gulp.task('html', function() {
var assets = $.useref.assets({searchPath: '{.tmp,app}'});
2014-08-01 02:31:51 -07: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.
.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
2015-01-06 05:54:34 -08:00
ignore: []
})))
2014-07-07 05:07:57 -07:00
// Concatenate And Minify Styles
// 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())
// Minify Any HTML
.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
gulp.task('clean', del.bind(null, ['.tmp', 'dist/*', '!dist/.git'], {dot: true}));
2014-04-17 05:02:38 -07:00
2014-06-19 05:14:21 -07:00
// Watch Files For Changes & Reload
gulp.task('serve', ['styles'], function() {
browserSync({
2014-06-25 15:14:19 -07:00
notify: false,
// Customize the BrowserSync console logging prefix
logPrefix: 'WSK',
// 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,
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]);
gulp.watch(['app/scripts/**/*.js','app/styleguide/**/*.js'], ['jshint']);
gulp.watch(['app/images/**/*'], reload);
2014-04-17 05:02:38 -07:00
});
2014-06-07 10:38:49 -07:00
// Build and serve the output from the dist build
gulp.task('serve:dist', ['default'], function() {
2014-06-30 13:23:24 -07:00
browserSync({
notify: false,
logPrefix: 'WSK',
// 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-19 16:36:01 -07:00
// Build Production Files, the Default Task
gulp.task('default', ['clean'], function(cb) {
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:43:40 -07:00
// Load custom tasks from the `tasks` directory
// try { require('require-dir')('tasks'); } catch (err) { console.error(err); }