mirror of
https://github.com/bckelley/cgm-remote-monitor.git
synced 2026-08-24 03:14:12 -05:00
* * Remove unused old version of MFB * Bundle food, profile editor * Clean up the static folders * Fix tests
17 lines
585 B
JavaScript
17 lines
585 B
JavaScript
import './bundle.source';
|
|
|
|
console.info('Nightscout report bundle start');
|
|
|
|
window.Nightscout.report_plugins_preinit = require('../lib/report_plugins/');
|
|
window.Nightscout.predictions = require('../lib/report/predictions');
|
|
window.Nightscout.reportclient = require('../lib/report/reportclient');
|
|
window.Nightscout.profileclient = require('../lib/profile/profileeditor');
|
|
window.Nightscout.foodclient = require('../lib/food/food');
|
|
|
|
console.info('Nightscout report bundle ready');
|
|
|
|
// Needed for Hot Module Replacement
|
|
if(typeof(module.hot) !== 'undefined') {
|
|
module.hot.accept()
|
|
}
|