Skip to content

Commit

Permalink
meteor workaround only required for development
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewplummer committed Sep 17, 2013
1 parent 8ab38d1 commit c5abd84
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion release/sugar-full.development.js
Original file line number Diff line number Diff line change
Expand Up @@ -9242,4 +9242,4 @@ Date.addLocale('zh-TW', {
});


})();
}).call(this);
2 changes: 1 addition & 1 deletion release/sugar-full.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion release/sugar.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions script/create_release.rb
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,15 @@ def create_package(name, arr)
end

def wrap_minified(js)
"(function(){#{js}}).call(this);"
"(function(){#{js}})();"
end

def wrap(js)
<<-EOT
(function(){
'use strict';
#{js}
})();
}).call(this);
EOT
end

Expand Down

0 comments on commit c5abd84

Please sign in to comment.