UNPKG

generator-base-backbone

Version:

Backbone.js basic skeleton for webapp development. With RequireJS, Bootstrap, Sass, and templating with Pug and Lodash. Also with JSHint and Grunt.

18 lines 289 B
'use strict'; module.exports = function(grunt) { grunt.config.set('pug', { compile: { options: { client: false, pretty: false }, files: [{ cwd: "src/templates/", src: "*.pug", dest: "src/templates/html/", expand: true, ext: ".html" }] } }); };