2022-01-13 13:00:31 +00:00
|
|
|
var
|
|
|
|
where = 'client' // Adds files only to the client
|
|
|
|
;
|
|
|
|
|
|
|
|
Package.describe({
|
|
|
|
name : 'semantic:ui',
|
2022-10-10 08:26:02 +00:00
|
|
|
summary : 'Fomantic UI - LESS only distribution',
|
2022-01-13 13:00:31 +00:00
|
|
|
version : '{version}',
|
2022-10-10 08:26:02 +00:00
|
|
|
git : 'git://github.com/fomantic/Fomantic-UI-LESS.git',
|
2022-01-13 13:00:31 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function(api) {
|
|
|
|
|
|
|
|
api.versionsFrom('1.0');
|
|
|
|
api.use('less', 'client');
|
|
|
|
|
|
|
|
api.addFiles([
|
|
|
|
{files}
|
|
|
|
], 'client');
|
|
|
|
|
|
|
|
});
|