20 lines
680 B
JavaScript
Executable File
20 lines
680 B
JavaScript
Executable File
import '/imports/startup/server';
|
|
|
|
// 2x
|
|
|
|
// Commons
|
|
import '/imports/api/log-client/server';
|
|
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
|
|
import { isEmpty } from 'radash';
|
|
|
|
global._ = { isEmpty };
|