mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 19:47:03 +00:00
9 lines
233 B
JavaScript
9 lines
233 B
JavaScript
|
|
module.exports = require('./script/index.coffee');
|
||
|
|
var _ = require('lodash');
|
||
|
|
var moment = require('moment');
|
||
|
|
|
||
|
|
if (typeof window !== 'undefined') {
|
||
|
|
window.habitrpgShared = module.exports;
|
||
|
|
window._ = _;
|
||
|
|
window.moment = moment;
|
||
|
|
}
|