2023-08-17 09:47:40 +00:00
|
|
|
let
|
|
|
|
where = 'client' // Adds files only to the client
|
2022-01-13 13:00:31 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
Package.describe({
|
2023-08-17 09:47:40 +00:00
|
|
|
name: 'fomantic:ui-css',
|
|
|
|
summary: 'Fomantic UI - CSS only distribution',
|
|
|
|
version: '{version}',
|
|
|
|
git: 'git://github.com/fomantic/Fomantic-UI-CSS.git',
|
2022-01-13 13:00:31 +00:00
|
|
|
});
|
|
|
|
|
2023-08-17 09:47:40 +00:00
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom('1.0');
|
2022-01-13 13:00:31 +00:00
|
|
|
|
2023-08-17 09:47:40 +00:00
|
|
|
api.use('jquery', 'client');
|
2022-01-13 13:00:31 +00:00
|
|
|
|
2023-08-17 09:47:40 +00:00
|
|
|
api.addAssets([
|
|
|
|
// icons
|
|
|
|
'themes/default/assets/fonts/icons.woff',
|
|
|
|
'themes/default/assets/fonts/icons.woff2',
|
|
|
|
], 'client');
|
2022-01-13 13:00:31 +00:00
|
|
|
|
2023-08-17 09:47:40 +00:00
|
|
|
api.addFiles([
|
|
|
|
// release
|
|
|
|
'semantic.css',
|
|
|
|
'semantic.js',
|
|
|
|
], 'client');
|
2022-01-13 13:00:31 +00:00
|
|
|
});
|