-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.js
47 lines (35 loc) · 900 Bytes
/
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
Package.describe({
name: "vulcan:theme-fuji"
});
Package.onUse(function (api) {
api.versionsFrom(['[email protected]']);
api.use([
// vulcan core
'vulcan:[email protected]',
// vulcan packages
'vulcan:[email protected]',
'vulcan:[email protected]',
'vulcan:[email protected]',
'vulcan:[email protected]',
'vulcan:email',
'vulcan:forms',
'vulcan:newsletter',
'vulcan:notifications',
// 'vulcan:getting-started',
'vulcan:categories',
'vulcan:events',
'vulcan:embedly',
'vulcan:api',
'vulcan:rss',
'vulcan:subscribe',
'vulcan:base-components',
// 'vulcan:base-styles',
'vulcan:email-templates',
'http',
'fourseven:[email protected]',
// 'vulcan:forms-tags',
]);
api.addFiles("lib/stylesheets/main.scss", "client");
api.mainModule("lib/server/main.js", "server");
api.mainModule("lib/client/main.js", "client");
});