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

var
where = 'client' // Adds files only to the client
;
Package.describe({
name : 'semantic:ui',
summary : 'Semantic UI (Official): a UI component framework based around useful principles from natural language.',
version : '{version}',
git : 'git://github.com/Semantic-Org/Semantic-UI.git',
readme : 'https://github.com/Semantic-Org/README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.0');
api.addFiles([
{files}
], where);
});
Package.onTest(function(api) {
api.use([
'tinytest',
'http',
'semantic:ui'
], where);
api.addFiles([
'test/meteor/fonts.js',
'test/meteor/assets.js',
], where);
});