forked from mycolorway/simditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
umd.hbs
22 lines (20 loc) · 770 Bytes
/
umd.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module unless amdModuleId is set
define('{{amdModuleId}}', [{{{amdDependencies.wrapped}}}], function ({{{dependencies}}}) {
return (root['{{objectToExport}}'] = factory({{dependencies}}));
});
} else if (typeof exports === 'object') {
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
module.exports = factory({{{cjsDependencies.wrapped}}});
} else {
root['{{globalAlias}}'] = factory({{{globalDependencies.wrapped}}});
}
}(this, function ({{dependencies}}) {
{{{code}}}
{{#if objectToExport}}
return {{objectToExport}};
{{/if}}
}));