Skip to content

Commit

Permalink
Merge pull request #450 from gagern/closure-compiler
Browse files Browse the repository at this point in the history
Update Closure Compiler to v20160822
  • Loading branch information
kranich committed Aug 28, 2016
2 parents 1027833 + f2a1bc6 commit 3a13fdc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion make/Settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = function Settings() {
closure_urlbase: "http://dl.google.com/closure-compiler",
closure_language: "ECMASCRIPT5_STRICT",
closure_level: "SIMPLE",
closure_version: "20160713",
closure_version: "20160822",
verbose: "true",
logprefix: "true",
c3d_closure_level: "ADVANCED",
Expand Down
2 changes: 1 addition & 1 deletion plugins/cindy3d/src/js/Cindy3D.js.wrapper
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
(function(){
%output%
})();//# sourceMappingURL=Cindy3D.js.map
}).call(this);//# sourceMappingURL=Cindy3D.js.map
2 changes: 1 addition & 1 deletion plugins/cindygl/src/js/CindyGL.js.wrapper
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function(){
%output%
})();//# sourceMappingURL=CindyGL.js.map
}).call(this);//# sourceMappingURL=CindyGL.js.map

1 change: 1 addition & 0 deletions tools/prepare-deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ function map(name, err, content) {
var root = map.sourceRoot || ".";
map.sourceRoot = "https://raw.githubusercontent.com/CindyJS/CindyJS/" + head + "/";
map.sources = map.sources.map(function(src) {
if (/^ \[synthetic:.*\] $/.test(src)) return src;
return ppath.normalize(ppath.join("build/js", root, src));
});
map.sourcesContent = map.sources.map(function(src) {
Expand Down

0 comments on commit 3a13fdc

Please sign in to comment.