Skip to content

Instantly share code, notes, and snippets.

@jonschlinkert
Created March 16, 2014 09:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonschlinkert/9580705 to your computer and use it in GitHub Desktop.
Save jonschlinkert/9580705 to your computer and use it in GitHub Desktop.
module.exports = function(grunt) {
'use strict';
grunt.initConfig({
assemble: {
options: {
partials: ['<%= app.templates %>/includes/*.hbs'],
},
site: {
files: {'dest/': ['<%= app.templates %>/*.hbs']}
}
}
});
// Load the Assemble plugin.
grunt.loadNpmTasks('assemble');
// The default task to run with the `grunt` command.
grunt.registerTask('default', ['assemble']);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment