bigbluebutton-Github/bigbluebutton-html5/server/main.js

20 lines
680 B
JavaScript
Raw Normal View History

2016-05-17 03:12:49 +08:00
import '/imports/startup/server';
2017-06-19 21:13:35 +08:00
// 2x
2017-07-01 03:16:00 +08:00
// Commons
2017-04-29 01:12:08 +08:00
import '/imports/api/log-client/server';
2016-06-02 01:18:13 +08:00
import '/imports/api/common/server/helpers';
import '/imports/startup/server/logger';
// Needed for Atmosphere package RocketChat/meteor-streamer
// It is out of date and was written when Meteor contained lodash
// package. However, we now import lodash as an npm package
// in order to control versions, update flexibly, etc..
// Setting the global._ to utilize the npm lodash package is an interim fix
// and its introduction was inspired by
// https://github.com/RocketChat/meteor-streamer/issues/40#issuecomment-497627893
2023-02-24 01:38:48 +08:00
import { isEmpty } from 'radash';
2023-02-24 01:38:48 +08:00
global._ = { isEmpty };