habitica/index.js
Tyler Renelle 6998fb70f3 export all scripts into top-level index.js, so that coffeeify includes
can import these properly. Hopefully this fixes the empty helpers bug.
@yangit I'll merge this into master once I'm sure it works
2013-06-18 18:21:27 -04:00

8 lines
No EOL
244 B
JavaScript

module.exports.items = require('./script/items.coffee');
module.exports.algos = require('./script/algos.coffee');
module.exports.helpers = require('./script/helpers.coffee');
try {
window;
window.habitrpgShared = exports;
} catch(e) {}