Issues (3586)

public/lib/semantic/package.js (1 issue)

Labels
Severity
1
var
2
  where = 'client' // Adds files only to the client
3
;
4
5
Package.describe({
0 ignored issues
show
The variable Package seems to be never declared. If this is a global, consider adding a /** global: Package */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
6
  name    : 'semantic:ui-css',
7
  summary : 'Semantic UI - CSS Release of Semantic UI',
8
  version : '2.2.11',
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
});
35