pomy
Version:
Based on the concept of a project object model (POM), POMY can manage a project's build, reporting and documentation from a central piece of information.
21 lines (16 loc) • 334 B
JavaScript
var
critical = require('critical'),
gulp = require('gulp');
gulp.task('critical', function() {
var dest = './public';
return critical.generateInline({
base: dest,
src: 'index.html',
styleTarget: 'app.css',
htmlTarget: 'index.html',
width: 320,
height: 480,
minify: true
});
});
;