UNPKG

generator-base-reactjs

Version:

ReactJS basic skeleton for webapp development. With RequireJS, Bootstrap, Sass and templating with Jade. JSX compiled with Babel.

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 } }); };