material-design-lite/gulpfile.js

149 lines
4.8 KiB
JavaScript
Raw Normal View History

/**
*
* Web Starter Kit
* Copyright 2014 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
*
* http://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 16:02:38 +04:00
'use strict';
2014-06-19 16:14:21 +04:00
// Include Gulp & Tools We'll Use
2014-04-17 16:02:38 +04:00
var gulp = require('gulp');
2014-06-07 21:38:49 +04:00
var $ = require('gulp-load-plugins')();
var rimraf = require('rimraf');
2014-06-19 05:37:49 +04:00
var runSequence = require('run-sequence');
var browserSync = require('browser-sync');
2014-06-06 14:59:34 +04:00
var pagespeed = require('psi');
var reload = browserSync.reload;
2014-04-17 16:02:38 +04:00
2014-06-19 16:14:21 +04:00
// Lint JavaScript
gulp.task('jshint', function () {
return gulp.src('app/scripts/**/*.js')
.pipe($.jshint())
.pipe($.jshint.reporter('jshint-stylish'))
.pipe($.jshint.reporter('fail'))
.pipe(reload({stream: true, once: true}));
});
2014-06-19 16:14:21 +04:00
// Optimize Images
gulp.task('images', function () {
return gulp.src('app/images/**/*')
.pipe($.cache($.imagemin({
progressive: true,
interlaced: true
})))
.pipe(gulp.dest('dist/images'))
.pipe(reload({stream: true, once: true}))
.pipe($.size({title: 'images'}));
});
// Automatically Prefix CSS
gulp.task('styles:css', function () {
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 16:14:21 +04:00
// Compile Sass For Style Guide Components (app/styles/components)
2014-06-19 05:37:49 +04:00
gulp.task('styles:components', function () {
return gulp.src('app/styles/components/components.scss')
2014-06-19 04:34:50 +04:00
.pipe($.rubySass({
style: 'expanded',
precision: 10,
2014-06-19 05:37:49 +04:00
loadPath: ['app/styles/components']
}))
.pipe($.autoprefixer('last 1 version'))
.pipe(gulp.dest('app/styles/components'))
.pipe($.size({title: 'styles:components'}));
2014-06-19 18:42:10 +04:00
});
2014-06-19 05:37:49 +04:00
2014-06-19 16:14:21 +04:00
// Compile Any Other Sass Files You Added (app/styles)
2014-06-19 05:37:49 +04:00
gulp.task('styles:scss', function () {
return gulp.src(['app/styles/**/*.scss', '!app/styles/components/components.scss'])
.pipe($.rubySass({
style: 'expanded',
precision: 10,
loadPath: ['app/styles']
2014-06-19 04:34:50 +04:00
}))
.pipe($.autoprefixer('last 1 version'))
.pipe(gulp.dest('.tmp/styles'))
.pipe($.size({title: 'styles:scss'}));
2014-06-19 05:37:49 +04:00
});
2014-06-18 23:58:06 +04:00
2014-06-19 16:14:21 +04:00
// Output Final CSS Styles
2014-06-19 05:37:49 +04:00
gulp.task('styles', ['styles:components', 'styles:scss', 'styles:css']);
2014-06-19 16:14:21 +04:00
// Scan Your HTML For Assets & Optimize Them
2014-06-18 23:58:06 +04:00
gulp.task('html', function () {
2014-06-06 16:01:17 +04:00
return gulp.src('app/**/*.html')
2014-06-19 04:34:50 +04:00
.pipe($.useref.assets({searchPath: '{.tmp,app}'}))
2014-06-19 16:14:21 +04:00
// Concatenate And Minify JavaScript
.pipe($.if('*.js', $.uglify()))
2014-06-19 16:14:21 +04:00
// Concatenate And Minify Styles
.pipe($.if('*.css', $.csso()))
2014-06-19 16:14:21 +04:00
// Remove Any Unused CSS
2014-06-19 17:06:29 +04:00
// 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'] })))
2014-04-17 16:02:38 +04:00
.pipe($.useref.restore())
.pipe($.useref())
2014-06-19 18:42:10 +04:00
// Update Production Style Guide Paths
2014-06-19 15:42:22 +04:00
.pipe($.replace('components/components.css', 'components/main.min.css'))
2014-06-19 16:14:21 +04:00
// Minify Any HTML
2014-06-12 16:20:49 +04:00
.pipe($.minifyHtml())
2014-06-19 16:14:21 +04:00
// Output Files
2014-06-06 16:01:17 +04:00
.pipe(gulp.dest('dist'))
.pipe($.size({title: 'html'}));
2014-04-17 16:02:38 +04:00
});
2014-06-19 16:14:21 +04:00
// Clean Output Directory
2014-06-19 05:37:49 +04:00
gulp.task('clean', function (cb) {
rimraf('dist', rimraf.bind({}, '.tmp', cb));
});
2014-04-17 16:02:38 +04:00
2014-06-19 16:14:21 +04:00
// Watch Files For Changes & Reload
2014-06-18 23:58:06 +04:00
gulp.task('serve', function () {
2014-06-20 18:52:08 +04:00
browserSync.init({
server: {
2014-06-19 04:34:50 +04:00
baseDir: ['app', '.tmp']
},
notify: false
});
2014-04-17 16:02:38 +04:00
2014-06-10 16:23:49 +04:00
gulp.watch(['app/**/*.html'], reload);
2014-06-19 04:34:50 +04:00
gulp.watch(['app/styles/**/*.{css,scss}'], ['styles']);
gulp.watch(['.tmp/styles/**/*.css'], reload);
gulp.watch(['app/scripts/**/*.js'], ['jshint']);
gulp.watch(['app/images/**/*'], ['images']);
2014-04-17 16:02:38 +04:00
});
2014-06-07 21:38:49 +04:00
2014-06-20 03:36:01 +04:00
// Build Production Files, the Default Task
2014-06-07 21:38:49 +04:00
gulp.task('default', ['clean'], function (cb) {
2014-06-20 03:36:01 +04:00
runSequence('styles', ['jshint', 'html', 'images'], cb);
2014-06-07 21:38:49 +04:00
});
2014-06-19 16:14:21 +04:00
2014-06-19 18:42:10 +04:00
// Run PageSpeed Insights
2014-06-19 16:14:21 +04:00
// Update `url` below to the public URL for your site
gulp.task('pagespeed', pagespeed.bind(null, {
2014-06-19 18:42:10 +04: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
2014-06-19 16:14:21 +04:00
// http://goo.gl/RkN0vE for info key: 'YOUR_API_KEY'
url: 'https://example.com',
strategy: 'mobile'
}));