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

36 lines
1.2 KiB

Package.describe({
name: 'rocketchat:theme',
version: '0.0.1',
summary: '',
git: '',
});
Package.onUse(function(api) {
api.use('rocketchat:lib');
api.use('rocketchat:logger');
api.use('rocketchat:assets');
api.use('juliancwirko:postcss');
api.use('ecmascript');
api.use('less');
api.use('webapp');
api.use('webapp-hashing');
api.use('templating', 'client');
// Compiled stylesheets
api.addFiles('client/main.css', 'client');
// Server side files
api.addFiles('server/server.js', 'server');
api.addFiles('server/variables.js', 'server');
// Colorpicker
api.addFiles('client/vendor/jscolor.js', 'client');
// Photoswipe
api.addFiles('client/vendor/photoswipe.css', 'client');
api.addAssets('client/imports/general/variables.css', 'server');
// Fontello
api.addFiles('client/vendor/fontello/css/fontello.css', 'client');
api.addAssets('client/vendor/fontello/font/fontello.eot', 'client');
api.addAssets('client/vendor/fontello/font/fontello.svg', 'client');
api.addAssets('client/vendor/fontello/font/fontello.ttf', 'client');
api.addAssets('client/vendor/fontello/font/fontello.woff', 'client');
api.addAssets('client/vendor/fontello/font/fontello.woff2', 'client');
// Run-time stylesheets
api.addAssets('server/colors.less', 'server');
});