assemble / gulp-assemble

Deprecated. Assemble can be used directly with or without gulp.

Home Page:https://github.com/assemble/assemble

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Heads up!

This project has been deprecated. Assemble can be used directly with or without gulp.

Examples

Assemble with gulp

var gulp = require('gulp');
var htmlmin = require('gulp-htmlmin');
var extname = require('gulp-extname');
var assemble = require('assemble');
var app = assemble();

gulp.task('load', function(cb) {
  app.partials('templates/partials/*.hbs');
  app.layouts('templates/layouts/*.hbs');
  app.pages('templates/pages/*.hbs');
  cb();
});

gulp.task('assemble', ['load'], function() {
  return app.toStream('pages')
    .pipe(app.renderFile())
    .pipe(htmlmin())
    .pipe(extname())
    .pipe(app.dest('site'));
});

gulp.task('default', ['assemble']);

Assemble without gulp

var htmlmin = require('gulp-htmlmin');
var extname = require('gulp-extname');
var assemble = require('assemble');
var app = assemble();

app.task('load', function(cb) {
  app.partials('templates/partials/*.hbs');
  app.layouts('templates/layouts/*.hbs');
  app.pages('templates/pages/*.hbs');
  cb();
});

app.task('assemble', ['load'], function() {
  return app.toStream('pages')
    .pipe(app.renderFile())
    .pipe(htmlmin())
    .pipe(extname())
    .pipe(app.dest('site'));
});

app.task('default', ['assemble']);

About

Deprecated. Assemble can be used directly with or without gulp.

https://github.com/assemble/assemble

License:MIT License


Languages

Language:JavaScript 100.0%