项目作者: radiovisual

项目描述 :
A collection of some useful gulp tasks
高级语言:
项目地址: git://github.com/radiovisual/gulp-recipes.git
创建时间: 2016-09-30T11:10:51Z
项目社区:https://github.com/radiovisual/gulp-recipes

开源协议:The Unlicense

下载


gulp-recipes

A collection of some useful gulp tasks.

:boom: :tropical_drink:

All of these snippets are for reference only. If you copy-paste you will almost certainly need to tweak things like the file paths, globs, etc.

Concatenate/minify JavaScript dependencies

  1. var uglify = require('gulp-uglify');
  2. gulp.task('build-deps', function() {
  3. console.log('building dependencies to file: ./src/js/vendor/build/dependencies.min.js');
  4. return gulp.src(['./dist/js/vendor/*.js'])
  5. .pipe(uglify({
  6. preserveComments: 'license'
  7. }))
  8. .pipe(concat('dependencies.min.js'))
  9. .pipe(gulp.dest('./dist/js/vendor/build/'));
  10. });

Reload browser when dependencies have changed

  1. var browserSync = require('browser-sync').create();
  2. gulp.task('browser-sync', function () {
  3. browserSync.init({
  4. server: {
  5. baseDir: './dist'
  6. }
  7. });
  8. gulp.watch(['./dist/*.html'], ['reload']);
  9. gulp.watch(['./dist/css/*.css'], ['reload']);
  10. gulp.watch(['./dist/js/*.js'], ['reload']);
  11. });
  12. gulp.task('reload', function () {
  13. browserSync.reload();
  14. });

Upload project files via FTP

  1. var ftp = require( 'vinyl-ftp' );
  2. gulp.task('ftp', function () {
  3. var conn = ftp.create({
  4. host: process.env.FTP_HOST,
  5. user: process.env.FTP_USER,
  6. password: process.env.FTP_PASS,
  7. parallel: 2,
  8. log: gutil.log
  9. });
  10. var globs = [
  11. 'dist/css/**/*',
  12. 'dist/js/**/*.js',
  13. 'dist/img/**/*',
  14. 'dist/.htaccess'
  15. ];
  16. // using base = '.' will transfer everything to /public_html correctly
  17. // turn off buffering in gulp.src for best performance
  18. return gulp.src(globs, {base: '.', buffer: false})
  19. .pipe(conn.newer( '/' )) // only upload newer files
  20. .pipe(conn.dest( '/' ));
  21. });

Convert SASS to CSS

  1. var uglifycss = require('gulp-uglifycss');
  2. var concat = require('gulp-concat');
  3. var sass = require('gulp-sass');
  4. gulp.task('sass', function () {
  5. return gulp.src(['./dist/sass/*.scss', '!./dist/sass/mixins.scss', '!./dist/sass/print.scss'])
  6. .pipe(sass().on('error', sass.logError))
  7. .pipe(uglifycss({
  8. "maxLineLen": 80,
  9. "uglyComments": true
  10. }))
  11. .pipe(concat('styles.min.css'))
  12. .pipe(gulp.dest('./dist/css'));
  13. });

Convert all markdown files to html

  1. var gulp = require('gulp');
  2. var wrapper = require('gulp-wrapper');
  3. var markdown = require('gulp-markdown');
  4. var html = {
  5. header: '<html>',
  6. footer: '</html>'
  7. }
  8. gulp.task('build-html', function () {
  9. return gulp.src(files)
  10. .pipe(markdown({gfm: true}))
  11. .pipe(wrapper({
  12. header: html.header,
  13. footer: html.footer
  14. }))
  15. .pipe(gulp.dest('build/html'));
  16. });

Convert all markdown files to pdf

  1. var gulp = require('gulp');
  2. var markdownpdf = require('gulp-markdown-pdf');
  3. gulp.task('build-pdfs', ['build-html'], function () {
  4. return gulp.src(files)
  5. .pipe(markdownpdf({
  6. cssPath: 'dependencies/pdf.css'
  7. }))
  8. .pipe(gulp.dest('build/pdf'));
  9. });

Concatenate all markdown files into a single html file

  1. var concat = require('gulp-concat');
  2. var markdown = require('gulp-markdown');
  3. var wrapper = require('gulp-wrapper');
  4. gulp.task('concat-html', function() {
  5. return gulp.src(files)
  6. .pipe(concat('00-all-documents.md'))
  7. .pipe(markdown({gfm: true}))
  8. .pipe(wrapper({
  9. header: html.header,
  10. footer: html.footer
  11. }))
  12. .pipe(gulp.dest('build/html'));
  13. });

Concatenate all markdown files into a single pdf file

  1. var concat = require('gulp-concat');
  2. var markdownpdf = require('gulp-markdown-pdf');
  3. gulp.task('concat-pdf', function() {
  4. return gulp.src('*.md')
  5. .pipe(concat('00-all-documents.md'))
  6. .pipe(markdownpdf({
  7. cssPath: 'dependencies/pdf.css'
  8. }))
  9. .pipe(gulp.dest('build/pdf'));
  10. });

Copy folder from one location to another

  1. gulp.task('copy-dependencies', function() {
  2. return gulp.src(['dependencies/**/*']).pipe(gulp.dest('build/html/dependencies'));
  3. });