-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.js
62 lines (51 loc) · 1.58 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({
name: "lifefilm:lf-films",
version: '0.0.4',
summary: 'video template for meteorjs telescope (nova react version)',
git: 'https://github.com/fortunto2/lf-films.git',
documentation: 'README.md'
});
Npm.depends({
// 'formsy-material-ui': '0.4.3',
// flexboxgrid: '6.3.0',
});
Package.onUse( function(api) {
api.versionsFrom("[email protected]");
api.use('mongo', ['client', 'server']);
api.use([
'fourseven:[email protected]_1',
'nova:[email protected]',
'nova:[email protected]',
'nova:[email protected]',
'nova:[email protected]',
'nova:[email protected]',
// third-party packages
'lifefilm:[email protected]',
'lifefilm:[email protected]',
'ostrio:[email protected]',
// 'lifefilm:[email protected]',
// 'materialize:materialize',
// 'std:[email protected]'
]);
api.addFiles([
'lib/modules.js'
], ['client', 'server']);
api.addFiles([
'lib/stylesheets/normalize.min.css',
// 'lib/stylesheets/_breakpoints.scss',
// 'lib/stylesheets/_colors.scss',
// 'lib/stylesheets/_variables.scss',
// 'lib/stylesheets/_global.scss',
// 'lib/stylesheets/_accounts.scss',
// 'lib/stylesheets/_categories.scss',
// 'lib/stylesheets/_cheatsheet.scss',
// 'lib/stylesheets/_comments.scss',
// 'lib/stylesheets/_header.scss',
// 'lib/stylesheets/_forms.scss',
// 'lib/stylesheets/_other.scss',
// 'lib/stylesheets/_posts.scss',
// 'lib/stylesheets/_newsletter.scss',
// 'lib/stylesheets/_users.scss',
'lib/stylesheets/main.scss',
], ['client']);
});