forked from website/openpower.foundation
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
740 B
JavaScript
35 lines
740 B
JavaScript
4 years ago
|
var
|
||
|
where = 'client' // Adds files only to the client
|
||
|
;
|
||
|
|
||
|
Package.describe({
|
||
|
name : 'semantic:ui-css',
|
||
|
summary : 'Semantic UI - CSS Release of Semantic UI',
|
||
|
version : '2.3.0',
|
||
|
git : 'git://github.com/Semantic-Org/Semantic-UI-CSS.git',
|
||
|
});
|
||
|
|
||
|
Package.onUse(function(api) {
|
||
|
|
||
|
api.versionsFrom('1.0');
|
||
|
|
||
|
api.use('jquery', 'client');
|
||
|
|
||
|
api.addFiles([
|
||
|
// icons
|
||
|
'themes/default/assets/fonts/icons.eot',
|
||
|
'themes/default/assets/fonts/icons.svg',
|
||
|
'themes/default/assets/fonts/icons.ttf',
|
||
|
'themes/default/assets/fonts/icons.woff',
|
||
|
'themes/default/assets/fonts/icons.woff2',
|
||
|
|
||
|
// flags
|
||
|
'themes/default/assets/images/flags.png',
|
||
|
|
||
|
// release
|
||
|
'semantic.css',
|
||
|
'semantic.js'
|
||
|
], 'client');
|
||
|
|
||
|
});
|