Updated comments

This commit is contained in:
josdejong 2013-05-03 23:06:16 +02:00
parent b287c4bfbc
commit 0976f078a5
1 changed files with 3 additions and 2 deletions

View File

@ -19,7 +19,7 @@ var JSONEDITOR = './jsoneditor.js',
/** /**
* default task * default task
*/ */
desc('Execute all tasks: build, minify, and zip the library and web app'); desc('Execute all tasks');
task('default', ['clear', 'build', 'minify', 'zip', 'webapp', 'chromeapp'], function () { task('default', ['clear', 'build', 'minify', 'zip', 'webapp', 'chromeapp'], function () {
console.log('Done'); console.log('Done');
}); });
@ -94,7 +94,8 @@ task('minify', ['build'], function () {
minify({ minify({
src: JSONEDITOR, src: JSONEDITOR,
dest: JSONEDITOR_MIN, dest: JSONEDITOR_MIN,
header: read('./src/js/header.js') header: read('./src/js/header.js'),
separator: '\n'
}); });
// update version number and stuff in the javascript files // update version number and stuff in the javascript files