forked from ElevateDev/meteor-autoform-slingshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
52 lines (45 loc) · 1.03 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
Package.describe({
name: 'elevatedevdesign:autoform-slingshot',
summary: 'Slingshot uploader for autoform',
version: '0.0.6',
git: 'https://github.com/ElevateDev/meteor-autoform-slingshot'
});
Package.onUse(function(api) {
api.use([
'aldeed:[email protected]',
]);
api.use([
'edgee:[email protected]',
'aldeed:[email protected]',
'aldeed:[email protected]',
],'client');
api.addFiles([
'fileSchema.js',
]);
api.addFiles([
'fileRecord.js',
'model.js',
'template.html',
'template.js',
'template.css',
], 'client');
api.export('afSlingshot');
});
Package.onTest(function(api) {
api.use([
'sanjo:[email protected]',
'velocity:core',
'velocity:[email protected]',
'velocity:console-reporter',
'pstuart2:[email protected]',
'elevatedevdesign:autoform-slingshot'
]);
api.addFiles([
'tests/file-spec.js',
'tests/afSlingshot-spec.js'
], 'client');
});