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.

17 lines 277 B
'use strict'; module.exports = function(grunt) { grunt.config.set('uglify', { dist: { options: { mangle: true, preserveComments: 'no', sourceMap: false }, cwd: 'src/scripts', dest: 'dist/js', src: '*.js', ext: '.js', expand: true } }); };