-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.js
43 lines (38 loc) · 1.14 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
Package.describe({
summary: 'A meteor package that makes social sharing easy',
git: 'https://github.com/meteorclub/shareit',
version: '1.0.2',
name: "joshowens:shareit"
});
Package.onUse(function(api) {
api.versionsFrom("[email protected]");
api.use(['less', 'templating', 'underscore', 'jquery'], 'client');
api.use(['fortawesome:[email protected]'], 'client');
api.imply('spiderable', ['client', 'server']);
api.addFiles([
'shareit.js',
'client/views/social.html',
'client/views/social.js',
'client/views/social.less',
'client/views/facebook/facebook.html',
'client/views/facebook/facebook.js',
'client/views/twitter/twitter.html',
'client/views/twitter/twitter.js',
'client/views/googleplus/googleplus.html',
'client/views/googleplus/googleplus.js',
'client/views/pinterest/pinterest.html',
'client/views/pinterest/pinterest.js'
], 'client');
api.export('ShareIt', 'client');
});
Package.onTest(function (api) {
api.use(['tinytest',
'test-helpers',
'templating',
])
api.use('joshowens:shareit')
api.addFiles([
'tests/client.html',
'tests/client.js'
], 'client')
})