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.

34 lines
740 B

  1. var
  2. where = 'client' // Adds files only to the client
  3. ;
  4. Package.describe({
  5. name : 'semantic:ui-css',
  6. summary : 'Semantic UI - CSS Release of Semantic UI',
  7. version : '2.1.6',
  8. git : 'git://github.com/Semantic-Org/Semantic-UI-CSS.git',
  9. });
  10. Package.onUse(function(api) {
  11. api.versionsFrom('1.0');
  12. api.use('jquery', 'client');
  13. api.addFiles([
  14. // icons
  15. 'themes/default/assets/fonts/icons.eot',
  16. 'themes/default/assets/fonts/icons.svg',
  17. 'themes/default/assets/fonts/icons.ttf',
  18. 'themes/default/assets/fonts/icons.woff',
  19. 'themes/default/assets/fonts/icons.woff2',
  20. // flags
  21. 'themes/default/assets/images/flags.png',
  22. // release
  23. 'semantic.css',
  24. 'semantic.js'
  25. ], 'client');
  26. });