material-design-lite/gulpfile.js

190 lines
5.5 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 del = require('del');
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
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 16:14:21 +04:00
// Lint JavaScript
gulp.task('jshint', function () {
2014-06-20 19:20:44 +04:00
return gulp.src('app/scripts/**/*.js')
.pipe(reload({stream: true, once: true}))
2014-06-20 19:20:44 +04:00
.pipe($.jshint())
.pipe($.jshint.reporter('jshint-stylish'))
.pipe($.if(!browserSync.active, $.jshint.reporter('fail')));
2014-06-19 16:14:21 +04:00
});
2014-06-19 16:14:21 +04:00
// Optimize Images
gulp.task('images', function () {
2014-06-20 19:20:44 +04: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 16:14:21 +04:00
});
// Copy All Files At The Root Level (app)
2014-07-08 18:53:00 +04:00
gulp.task('copy', function () {
2014-08-05 23:59:38 +04:00
return gulp.src([
'app/*',
'!app/*.html',
'node_modules/apache-server-configs/dist/.htaccess'
], {
dot: true
}).pipe(gulp.dest('dist'))
.pipe($.size({title: 'copy'}));
});
2014-07-08 18:53:00 +04:00
// Copy Web Fonts To Dist
gulp.task('fonts', function () {
return gulp.src(['app/fonts/**'])
.pipe(gulp.dest('dist/fonts'))
.pipe($.size({title: 'fonts'}));
});
// Compile and Automatically Prefix Stylesheets
gulp.task('styles', function () {
// For best performance, don't add Sass partials to `gulp.src`
return gulp.src([
2014-09-03 14:23:16 +04:00
'app/styles/**/*.scss',
'app/styles/**/*.css'
])
.pipe($.changed('styles', {extension: '.scss'}))
.pipe($.rubySass({
style: 'expanded',
precision: 10
})
.on('error', console.error.bind(console))
)
.pipe($.autoprefixer(AUTOPREFIXER_BROWSERS))
2014-06-20 19:20:44 +04:00
.pipe(gulp.dest('.tmp/styles'))
// Concatenate And Minify Styles
.pipe($.if('*.css', $.csso()))
.pipe(gulp.dest('dist/styles'))
.pipe($.size({title: 'styles'}));
2014-06-19 05:37:49 +04:00
});
2014-06-18 23:58:06 +04:00
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 () {
var assets = $.useref.assets({searchPath: '{.tmp,app}'});
2014-08-01 13:31:51 +04:00
2014-06-20 19:20:44 +04:00
return gulp.src('app/**/*.html')
2014-08-01 13:31:51 +04:00
.pipe(assets)
2014-06-20 19:20:44 +04:00
// Concatenate And Minify JavaScript
2014-06-28 00:56:54 +04:00
.pipe($.if('*.js', $.uglify({preserveComments: 'some'})))
2014-06-20 19:20:44 +04: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 20:52:51 +04:00
html: [
'app/index.html',
2014-08-20 20:02:58 +04:00
'app/styleguide.html'
2014-06-30 20:52:51 +04:00
],
// CSS Selectors for UnCSS to ignore
ignore: [
2014-08-10 05:00:24 +04:00
/.navdrawer-container.open/,
2014-06-30 20:52:51 +04:00
/.app-bar.open/
]
})))
2014-07-07 16:07:57 +04:00
// Concatenate And Minify Styles
// In case you are still using useref build blocks
2014-07-07 16:07:57 +04:00
.pipe($.if('*.css', $.csso()))
2014-08-01 13:31:51 +04:00
.pipe(assets.restore())
2014-06-20 19:20:44 +04:00
.pipe($.useref())
// Update Production Style Guide Paths
.pipe($.replace('components/components.css', 'components/main.min.css'))
// Minify Any HTML
.pipe($.if('*.html', $.minifyHtml()))
2014-06-20 19:20:44 +04:00
// Output Files
.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
gulp.task('clean', del.bind(null, ['.tmp', 'dist']));
2014-04-17 16:02:38 +04:00
2014-06-19 16:14:21 +04:00
// Watch Files For Changes & Reload
gulp.task('serve', ['styles'], function () {
browserSync({
2014-06-26 02:14:19 +04:00
notify: false,
// 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 19:20:44 +04:00
});
2014-04-17 16:02:38 +04:00
2014-06-20 19:20:44 +04:00
gulp.watch(['app/**/*.html'], reload);
gulp.watch(['app/styles/**/*.{scss,css}'], ['styles', reload]);
2014-06-20 19:20:44 +04:00
gulp.watch(['app/scripts/**/*.js'], ['jshint']);
gulp.watch(['app/images/**/*'], reload);
2014-04-17 16:02:38 +04:00
});
2014-06-07 21:38:49 +04:00
// Build and serve the output from the dist build
2014-07-01 00:23:24 +04:00
gulp.task('serve:dist', ['default'], function () {
browserSync({
notify: false,
// 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: 'dist'
});
});
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-07-08 18:53:00 +04:00
runSequence('styles', ['jshint', 'html', 'images', 'fonts', 'copy'], 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-20 19:20:44 +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
// http://goo.gl/RkN0vE for info key: 'YOUR_API_KEY'
url: 'https://example.com',
strategy: 'mobile'
2014-06-19 16:14:21 +04:00
}));
2014-06-27 22:43:40 +04:00
// Load custom tasks from the `tasks` directory
try { require('require-dir')('tasks'); } catch (err) {}