Commit d8dd9172 authored by Boris Kocherov's avatar Boris Kocherov

disable closure-compile

parent 1bda4b64
...@@ -185,7 +185,7 @@ module.exports = function(grunt) { ...@@ -185,7 +185,7 @@ module.exports = function(grunt) {
} else { } else {
splitLine = ('PRETTY_PRINT' === formatting) ? 'window["split"] = "split";' : 'window["split"]="split";'; splitLine = ('PRETTY_PRINT' === formatting) ? 'window["split"] = "split";' : 'window["split"]="split";';
} }
splitLine = 'window["split"]="split";';
grunt.initConfig({ grunt.initConfig({
'closure-compiler': { 'closure-compiler': {
sdk: { sdk: {
...@@ -201,7 +201,7 @@ module.exports = function(grunt) { ...@@ -201,7 +201,7 @@ module.exports = function(grunt) {
prefix: [ "sdk-all-min", "sdk-all" ] prefix: [ "sdk-all-min", "sdk-all" ]
}, },
dest: sdkDstFolder, dest: sdkDstFolder,
src: tmp_sdk_path src: sdkTmp
} }
}, },
concat: { concat: {
...@@ -243,6 +243,6 @@ module.exports = function(grunt) { ...@@ -243,6 +243,6 @@ module.exports = function(grunt) {
}); });
grunt.registerTask('concat_sdk', ['concat_sdk_init', 'concat', 'clean']); grunt.registerTask('concat_sdk', ['concat_sdk_init', 'concat', 'clean']);
grunt.registerTask('compile_sdk', ['concat_sdk', 'compile_sdk_init', 'closure-compiler', 'splitfile', 'concat', 'replace', 'clean']); grunt.registerTask('compile_sdk', ['concat_sdk', 'compile_sdk_init', 'splitfile', 'concat', 'replace', 'clean']);
grunt.registerTask('default', ['build_all']); grunt.registerTask('default', ['build_all']);
}; };
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