ohif-viewer/Packages/ohif-themes/package.js
2017-03-21 10:16:46 -03:00

17 lines
362 B
JavaScript

Package.describe({
name: 'ohif:themes',
summary: 'OHIF Themes overridable package',
version: '0.0.1'
});
Package.onUse(function(api) {
api.versionsFrom('1.4.2.3');
api.use('stylus');
api.use('ohif:themes-common', 'client');
// Importable themes related variables
api.addFiles('themes.styl', 'client', { isImport: true });
});