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.

29 lines
704 B

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