Skip to content

Instantly share code, notes, and snippets.

@tanshio
Created July 16, 2014 05:32
Show Gist options
  • Save tanshio/5981dba7e5ff8b081a74 to your computer and use it in GitHub Desktop.
Save tanshio/5981dba7e5ff8b081a74 to your computer and use it in GitHub Desktop.
gulp20140716
/**
*
* 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
*
*/
'use strict';
// Include Gulp & Tools We'll Use
var gulp = require('gulp');
var $ = require('gulp-load-plugins')();
var rimraf = require('rimraf');
var runSequence = require('run-sequence');
var browserSync = require('browser-sync');
var pagespeed = require('psi');
var reload = browserSync.reload;
// Lint JavaScript
gulp.task('jshint', function () {
return gulp.src('app/scripts/**/*.js')
.pipe($.plumber())
.pipe($.jshint())
.pipe($.jshint.reporter('jshint-stylish'))
.pipe($.jshint.reporter('fail'))
.pipe(reload({stream: true, once: true}));
});
// 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($.plumber())
.pipe($.autoprefixer('last 1 version'))
.pipe(gulp.dest('app/styles'))
.pipe(reload({stream: true}))
.pipe($.size({title: 'styles:css'}));
});
// Compile Sass For Style Guide Components (app/styles/components)
gulp.task('styles:components', function () {
return gulp.src('app/styles/components/components.scss')
.pipe($.plumber())
.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'}));
});
// Compile Any Other Sass Files You Added (app/styles)
gulp.task('styles:scss', function () {
return gulp.src(['app/styles/**/*.scss', '!app/styles/components/components.scss'])
.pipe($.plumber())
.pipe($.rubySass({
style: 'expanded',
precision: 10,
loadPath: ['app/styles']
}))
.pipe($.autoprefixer('last 1 version'))
.pipe(gulp.dest('app/styles'))
.pipe(gulp.dest('.tmp/styles'))
.pipe($.size({title: 'styles:scss'}));
});
// Output Final CSS Styles
gulp.task('styles', ['styles:scss', 'styles:css']);
// Scan Your HTML For Assets & Optimize Them
gulp.task('html', function () {
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'}));
});
// Clean Output Directory
gulp.task('clean', function (cb) {
rimraf('dist', rimraf.bind({}, '.tmp', cb));
});
// Watch Files For Changes & Reload
gulp.task('serve', function () {
browserSync.init(null, {
server: {
baseDir: ['app', '.tmp']
},
notify: false
});
gulp.watch(['app/**/*.html'], reload);
gulp.watch(['app/styles/**/*.{css,scss}'], ['styles']);
gulp.watch(['.tmp/styles/**/*.css'], reload);
gulp.watch(['app/scripts/**/*.js'], ['jshint']);
//gulp.watch(['app/images/**/*'], ['images']);
});
// Build Production Files
gulp.task('build', function (cb) {
runSequence('styles', ['jshint', 'html', 'images'], cb);
});
// Default Task
gulp.task('default', ['clean'], function (cb) {
gulp.start('build', cb);
});
// Run PageSpeed Insights
// Update `url` below to the public URL for your site
gulp.task('pagespeed', pagespeed.bind(null, {
// 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'
}));
{
"devDependencies": {
"browser-sync": "^0.9.1",
"gulp": "^3.6.0",
"gulp-autoprefixer": "^0.0.7",
"gulp-cache": "^0.1.1",
"gulp-csso": "^0.2.6",
"gulp-flatten": "^0.0.2",
"gulp-if": "^1.2.1",
"gulp-imagemin": "^0.6.1",
"gulp-jshint": "^1.5.3",
"gulp-load-plugins": "^0.5.0",
"gulp-minify-html": "^0.1.3",
"gulp-plumber": "^0.6.3",
"gulp-replace": "^0.3.0",
"gulp-ruby-sass": "^0.5.0",
"gulp-sass": "^0.7.2",
"gulp-size": "^0.4.0",
"gulp-uglify": "^0.3.0",
"gulp-uncss": "^0.4.4",
"gulp-useref": "^0.4.3",
"jshint-stylish": "^0.2.0",
"opn": "^0.1.1",
"psi": "0.0.3",
"rimraf": "^2.2.8",
"run-sequence": "^0.3.6"
},
"engines": {
"node": ">=0.10.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment