mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-14 13:17:24 +01:00
10 lines
234 B
JavaScript
10 lines
234 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;
|
|
}
|