15 lines
322 B
Cheetah
15 lines
322 B
Cheetah
module.exports = {
|
|
<%
|
|
|
|
branches.forEach(function (branch, i, list) {
|
|
var req = "require('./" + _v4.snakeCase(branch) + "')";
|
|
if (branch === utils.branches._default) {
|
|
print(" '_default': " + req + ',\n');
|
|
}
|
|
|
|
print(" '" + branch + "': " + req + (i === list.length - 1 ? '' : ',\n'));
|
|
});
|
|
|
|
%>
|
|
};
|