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.

36 lines
929 B

  1. Package.describe({
  2. name: 'semantic:ui',
  3. summary: 'Semantic empowers designers and developers by creating a shared vocabulary for UI.',
  4. version: '1.0.1',
  5. git: 'git://github.com/Semantic-Org/Semantic-UI.git#1.0'
  6. });
  7. var where = 'client'; // Adds files only to the client
  8. Package.onUse(function(api) {
  9. api.versionsFrom('1.0');
  10. api.addFiles([
  11. 'dist/semantic.css',
  12. 'dist/semantic.js',
  13. 'dist/themes/default/assets/fonts/icons.eot',
  14. 'dist/themes/default/assets/fonts/icons.otf',
  15. 'dist/themes/default/assets/fonts/icons.svg',
  16. 'dist/themes/default/assets/fonts/icons.ttf',
  17. 'dist/themes/default/assets/fonts/icons.woff',
  18. 'dist/themes/default/assets/images/flags.png',
  19. ], where);
  20. });
  21. Package.onTest(function(api) {
  22. api.use([
  23. 'tinytest',
  24. 'http',
  25. 'semantic:ui'
  26. ], where);
  27. api.addFiles([
  28. 'meteor/tests/test_fonts.js',
  29. 'meteor/tests/test_images.js',
  30. ], where);
  31. });