diff --git a/Gruntfile.js b/Gruntfile.js index c695ddd..93da278 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -8,10 +8,6 @@ grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), - // -- Constants ------------------------------------------------------------ - - BUILD_COMMENT: 'THIS FILE IS GENERATED BY A BUILD SCRIPT - DO NOT EDIT!', - // -- Clean Config --------------------------------------------------------- clean: { @@ -169,7 +165,7 @@ grunt.initConfig({ expand: true, cwd : 'build/', - src : ['base*.css', 'forms*.css', 'tables*.css', '<%= pkg.name %>*.css'] + src : ['base*.css', '<%= pkg.name %>*.css'] }, yahoo: { @@ -277,17 +273,17 @@ grunt.registerTask('bower-install', 'Installs Bower dependencies.', function () done = this.async(); bower.commands.install() - .on('log', function (data) { - if (data.id !== 'install') { return; } - grunt.log.writeln('bower ' + data.id.cyan + ' ' + data.message); - }) - .on('end', function (results) { - if (!Object.keys(results).length) { - grunt.log.writeln('No bower packages to install.'); - } + .on('log', function (data) { + if (data.id !== 'install') { return; } + grunt.log.writeln('bower ' + data.id.cyan + ' ' + data.message); + }) + .on('end', function (results) { + if (!Object.keys(results).length) { + grunt.log.writeln('No bower packages to install.'); + } - done(); - }); + done(); + }); }); // -- License Task -------------------------------------------------------------