-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.js
80 lines (64 loc) · 2.25 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
Package.describe({
name: "telescope:zeiss",
summary: "Zeiss theme",
version: "0.2.3",
git: "https://github.com/TelescopeJS/screenings"
});
Package.onUse(function (api) {
api.versionsFrom(['[email protected]']);
api.use([
'telescope:[email protected]',
'telescope:[email protected]'
]);
api.addFiles([
'package-tap.i18n'
], ['client', 'server']);
api.addFiles([
'lib/config.js',
'lib/modules.js',
'lib/icons.js',
'lib/views.js',
'lib/menus.js',
'lib/colors.js'
], ['client', 'server']);
api.addFiles([
'lib/server/templates/zss_emailDigest.handlebars',
'lib/server/templates/zss_emailPostItem.handlebars'
], ['server']);
api.addFiles([
'lib/client/templates/common/layout.html',
// 'lib/client/templates/common/logo.html',
'lib/client/templates/common/newsletter_banner.html',
'lib/client/templates/common/newsletter_banner.js',
'lib/client/templates/common/page.html',
'lib/client/templates/common/footer_social.html',
'lib/client/templates/common/footer_social.js',
'lib/client/templates/post_page/post_page.html',
'lib/client/templates/post_page/post_page.js',
'lib/client/templates/posts/post_item.html',
'lib/client/templates/posts/post_item.js',
'lib/client/templates/posts/after_post_item.html',
'lib/client/templates/posts/after_post_item.js',
'lib/client/templates/posts/post_submit.html',
'lib/client/templates/posts/post_thumbnail.html',
'lib/client/templates/posts/post_thumbnail.js',
'lib/client/templates/posts/post_vote.html',
'lib/client/templates/posts/post_vote.js',
'lib/client/templates/nav/views_menu.html',
'lib/client/templates/nav/views_menu.js',
'lib/client/templates/nav/submit_button.html',
'lib/client/stylesheets/_comments.scss',
'lib/client/stylesheets/_global.scss',
'lib/client/stylesheets/_posts_grid.scss',
'lib/client/stylesheets/_mixins.scss',
'lib/client/stylesheets/_nav.scss',
'lib/client/stylesheets/_custom_nav.scss',
'lib/client/stylesheets/_other.scss',
'lib/client/stylesheets/_post_page.scss',
'lib/client/stylesheets/_accounts.scss',
'lib/client/stylesheets/screen.scss'
], ['client']);
api.addFiles([
"i18n/en.i18n.json"
], ["client", "server"]);
});