github.com/fanux/shipyard@v0.0.0-20161009071005-6515ce223235/controller/static/semantic/tasks/config/admin/templates/css-package.js (about)

     1  var
     2    where = 'client' // Adds files only to the client
     3  ;
     4  
     5  Package.describe({
     6    name    : 'semantic:ui-css',
     7    summary : 'Semantic UI - CSS Release of Semantic UI',
     8    version : '{version}',
     9    git     : 'git://github.com/Semantic-Org/Semantic-UI-CSS.git',
    10  });
    11  
    12  Package.onUse(function(api) {
    13  
    14    api.versionsFrom('1.0');
    15  
    16    api.use('jquery', 'client');
    17  
    18    api.addFiles([
    19      // icons
    20      'themes/default/assets/fonts/icons.eot',
    21      'themes/default/assets/fonts/icons.svg',
    22      'themes/default/assets/fonts/icons.ttf',
    23      'themes/default/assets/fonts/icons.woff',
    24      'themes/default/assets/fonts/icons.woff2',
    25  
    26      // flags
    27      'themes/default/assets/images/flags.png',
    28  
    29      // release
    30      'semantic.css',
    31      'semantic.js'
    32    ], 'client');
    33  
    34  });