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/packages/rocketchat-reactions/package.js

26 lines
622 B

Package.describe({
name: 'rocketchat:reactions',
version: '0.0.1',
summary: '',
git: '',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.2.1');
api.use('ecmascript');
api.use('templating');
api.use('rocketchat:lib');
api.use('rocketchat:theme');
api.use('rocketchat:ui');
api.addFiles('client/init.js', 'client');
api.addFiles('server/models/Messages.js');
api.addFiles('client/methods/setReaction.js', 'client');
api.addFiles('setReaction.js', 'server');
api.addAssets('client/stylesheets/reaction.less', 'server');
api.addFiles('loadStylesheets.js', 'server');
});