cljs-lambda
cljs-lambda copied to clipboard
Look into deferring all require() calls to the handler body
Something like this in the none/simple templates:
{{#module}}
{{#function}}
exports.{{export}} = function(event, ctx, cb) {
goog.require("{{name}}");
{{js-name}}(event, ctx, cb);
}
{{/function}}
{{/module}}