-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
57 lines (49 loc) · 1.17 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
Package.describe({
name: 'fauphi:meteor-blog',
git: 'https://github.com/Fauphi/meteor-blog',
summary: 'Simple blog with quill-editor.',
version: '0.1.3'
});
Package.onUse(function (api) {
// Npm.depends({});
api.versionsFrom('1.3.2.4');
api.use([
'ecmascript',
'es5-shim',
'mongo',
'templating',
'reactive-var',
'momentjs:moment@2.15.2',
'kadira:flow-router@2.12.1',
'aldeed:simple-schema@1.5.3',
'aldeed:collection2@2.10.0',
'aldeed:autoform@5.8.1',
'blaze-html-templates',
'kadira:blaze-layout@2.3.0',
'fauphi:autoform-base64-img@0.1.2',
'fauphi:autoform-quill@0.1.1'
], ['client', 'server']);
api.addFiles([
'admin/blog.html',
'admin/blog.css',
'admin/blog.js',
'admin/edit-entry.html',
'admin/edit-entry.css',
'admin/edit-entry.js'
], 'client');
api.addFiles([
'layout.js',
'layout.html',
'routes.js'
], 'client');
api.addFiles([
'client/blog.html',
'client/blog.js',
'client/blog-entry.html',
'client/blog-entry.js'
], 'client');
api.addFiles([
'backend/blog-server.js',
'backend/publications-server.js',
], ['server']);
});