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.

17 lines
407 B

  1. var
  2. where = 'client' // Adds files only to the client
  3. ;
  4. Package.describe({
  5. name : 'semantic:ui-{component}',
  6. summary : 'Semantic UI - {Component} (official): Single component release of {component}',
  7. version : '{version}',
  8. git : 'git://github.com/Semantic-Org/UI-{Component}.git',
  9. });
  10. Package.onUse(function(api) {
  11. api.versionsFrom('1.0');
  12. api.addFiles([
  13. {files}
  14. ], where);
  15. });