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

49 lines
1.4 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('coffeescript');
api.use('ecmascript');
api.use('less');
api.use('underscore');
api.use('webapp');
api.use('webapp-hashing');
api.use('templating', 'client');
// Server side files
api.addFiles('server/server.coffee', 'server');
api.addFiles('server/variables.coffee', 'server');
// Colorpicker
api.addFiles('client/vendor/jscolor.js', 'client');
// Photoswipe
api.addFiles('client/vendor/photoswipe.less', 'client');
// 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');
// Compiled stylesheets
api.addFiles('client/main.less', 'client');
// Run-time stylesheets
api.addAssets('server/lesshat.less', 'server');
api.addAssets('server/colors.less', 'server');
});
Npm.depends({
'less': 'https://github.com/meteor/less.js/tarball/8130849eb3d7f0ecf0ca8d0af7c4207b0442e3f6',
'less-plugin-autoprefix': '1.4.2'
});