12345678910111213141516171819202122232425262728293031323334 |
- 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.3',
- 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');
- });
|