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.

21 lines
396 B

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