The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/apps/meteor/packages/autoupdate/package.js

20 lines
509 B

Package.describe({
name: 'autoupdate',
summary: 'Update the client when new client code is available',
version: '2.0.1',
});
Package.onUse(function (api) {
api.use(['webapp', 'check', 'inter-process-messaging'], 'server');
api.use(['tracker', 'retry'], 'client');
api.use('reload', 'client', { weak: true });
api.use(['ecmascript', 'ddp'], ['client', 'server']);
api.mainModule('autoupdate_server.js', 'server');
api.mainModule('autoupdate_client.js', 'client');
api.export('Autoupdate');
});