Skip to content

premailer/gulp-juice

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

premailer-gulp-juice

build status npm downloads

Stream html files through juice to inline CSS.

Examples

npm install premailer-gulp-juice --save-dev 
const juice = require('premailer-gulp-juice');

gulp.task('bootloader', function(){
  gulp.src('./.build/bootloader.html')
    .pipe(juice({}))
    .pipe(gulp.dest('./.build/bootloader.inline.html'));
});

gulp.task('deploy', ['build', 'manifest', 'bootloader', 'publishtoS3']);

Protip when using with a template renderer: need to pipe to dest first as you probably want juice resolving css relative to our actual build output:

const juice = require('premailer-gulp-juice'),
  pug = require('gulp-pug');

gulp.task('bootloader', function(){
  gulp.src('./app/templates/bootloader.pug')
    .pipe(pug({pretty: true}))
    .pipe(gulp.dest('./.build'))
    .pipe(juice())
    .pipe(gulp.dest('./.build'));
});

gulp.task('deploy', ['build', 'manifest', 'bootloader', 'publishtoS3']);

License

MIT

About

process html files through juice to inline CSS

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 56.4%
  • JavaScript 43.6%