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-ui-login/package.js

39 lines
1.2 KiB

Package.describe({
name: 'rocketchat:rocketchat-ui-login',
version: '0.0.1',
// Brief, one-line summary of the package.
summary: '',
// URL to the Git repository containing the source code for this package.
git: '',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.2.1');
api.use([
'ecmascript',
'templating',
'coffeescript',
'underscore',
'rocketchat:lib@0.0.1'
]);
api.addFiles('login/footer.html', 'client');
api.addFiles('login/form.html', 'client');
api.addFiles('login/header.html', 'client');
api.addFiles('login/intro.html', 'client');
api.addFiles('login/layout.html', 'client');
api.addFiles('login/services.html', 'client');
api.addFiles('login/social.html', 'client');
api.addFiles('login/footer.coffee', 'client');
api.addFiles('login/form.coffee', 'client');
api.addFiles('login/header.coffee', 'client');
api.addFiles('login/services.coffee', 'client');
api.addFiles('login/social.coffee', 'client');
// api.addAssets('styles/side-nav.less', 'client');
});