-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.js
62 lines (54 loc) · 1.7 KB
/
package.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Package.describe({
summary: 'A collection Bootswatch themes for Bootstrap-Themer',
name: 'tap:meteorstrap-bootswatch',
version: '1.0.0',
git: 'https://github.com/TAPevents/meteorstrap-bootswatch'
});
Package.on_use(function(api) {
api.versionsFrom('1.2.1');
api.use([
'coffeescript'
], ['server']);
api.use([
'tap:[email protected]'
], ['server'], {weak: true});
// Bootstrap Server-side assets
api.addAssets([
// bootswatch themes
'themes/cerulean/bootswatch.less',
'themes/cerulean/variables.less',
'themes/cosmo/bootswatch.less',
'themes/cosmo/variables.less',
'themes/cyborg/bootswatch.less',
'themes/cyborg/variables.less',
'themes/darkly/bootswatch.less',
'themes/darkly/variables.less',
'themes/flatly/bootswatch.less',
'themes/flatly/variables.less',
'themes/journal/bootswatch.less',
'themes/journal/variables.less',
'themes/lumen/bootswatch.less',
'themes/lumen/variables.less',
'themes/paper/bootswatch.less',
'themes/paper/variables.less',
'themes/readable/bootswatch.less',
'themes/readable/variables.less',
'themes/sandstone/bootswatch.less',
'themes/sandstone/variables.less',
'themes/simplex/bootswatch.less',
'themes/simplex/variables.less',
'themes/slate/bootswatch.less',
'themes/slate/variables.less',
'themes/spacelab/bootswatch.less',
'themes/spacelab/variables.less',
'themes/superhero/bootswatch.less',
'themes/superhero/variables.less',
'themes/united/bootswatch.less',
'themes/united/variables.less',
'themes/yeti/bootswatch.less',
'themes/yeti/variables.less'
], "server");
api.add_files([
'bootswatch-themes.coffee'
], "server");
});