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.

31 lines
668 B

  1. var
  2. where = 'client' // Adds files only to the client
  3. ;
  4. Package.describe({
  5. name : 'semantic:ui',
  6. summary : 'Semantic UI (Official): a UI component framework based around useful principles from natural language.',
  7. version : '{version}',
  8. git : 'git://github.com/Semantic-Org/Semantic-UI.git',
  9. readme : 'https://github.com/Semantic-Org/README.md'
  10. });
  11. Package.onUse(function(api) {
  12. api.versionsFrom('1.0');
  13. api.addFiles([
  14. {files}
  15. ], where);
  16. });
  17. Package.onTest(function(api) {
  18. api.use([
  19. 'tinytest',
  20. 'http',
  21. 'semantic:ui'
  22. ], where);
  23. api.addFiles([
  24. 'test/meteor/fonts.js',
  25. 'test/meteor/assets.js',
  26. ], where);
  27. });