Updated comments
This commit is contained in:
parent
b287c4bfbc
commit
0976f078a5
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue