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.

15 lines
405 B

  1. Package.describe({
  2. name: 'semantic:ui-{component}',
  3. summary: 'Semantic UI - {Component} (official): Single component release of {component}',
  4. version: '{package-version}',
  5. git: 'git://github.com/Semantic-Org/UI-{Component}.git',
  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. {package-files} ], where);
  12. });