-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
41 lines (32 loc) · 891 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
Package.describe({
name: "abhaytalreja:nova-class-bargain-theme",
summary: "Telescope Nova Class Bargain Theme",
version: "0.0.1",
git: "https://github.com/abhaytalreja/nova-class-bargain-theme"
});
Package.onUse( function(api) {
api.versionsFrom("[email protected]");
api.use([
'nova:[email protected]',
'nova:[email protected]',
'nova:[email protected]',
'nova:[email protected]',
'fourseven:[email protected]'
]);
api.addFiles([
'lib/modules.js'
], ['client', 'server']);
api.addFiles([
'lib/stylesheets/custom.scss'
], ['client']);
// api.addAssets([
// 'lib/images/classbargains.png',
// 'lib/images/logo.png',
// ], ['client']);
// api.addFiles([
// ], ['server']);
// api.addAssets([
// 'lib/server/emails/customNewPost.handlebars',
// 'lib/server/emails/customEmail.handlebars'
// ], ['server']);
});