Commit fdd7f38e by Sam Padgett Committed by GitHub

Merge pull request #46 from liggitt/min-whitespace

preserve line-breaks in minified file to avoid merge conflicts
parents 52b4d121 137a339e
...@@ -107,7 +107,14 @@ module.exports = function (grunt) { ...@@ -107,7 +107,14 @@ module.exports = function (grunt) {
}, },
uglify: { uglify: {
options: { options: {
mangle: false compress: {},
mangle: false,
beautify: {
beautify: true,
indent_level: 0,
space_colon: false, // Don't waste characters
width: 1000
}
}, },
build: { build: {
files: {}, files: {},
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment