forked from timbrandin/autoform-slingshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
47 lines (39 loc) · 987 Bytes
/
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
Package.describe({
name: "timbrandin:autoform-slingshot",
summary: "File upload for AutoForm with Slingshot",
description: "File upload for AutoForm with Slingshot",
version: "1.1.3",
git: "http://github.com/timbrandin/autoform-slingshot.git"
});
Package.onUse(function(api) {
configure(api);
});
function configure(api) {
api.versionsFrom('[email protected]');
api.use([
'coffeescript',
'underscore',
'templating',
'less',
'jquery',
'aldeed:autoform',
'edgee:slingshot',
"tap:i18n"
], ['client', 'server']);
api.imply([
'aldeed:autoform',
'edgee:slingshot',
'tap:i18n'
]);
api.addFiles('i18n/package-tap.i18n', ["client", "server"]);
api.addFiles([
'lib/client/autoform-slingshot.html',
'lib/client/autoform-slingshot.less',
'lib/client/autoform-slingshot.coffee'
], 'client');
api.add_files([
"i18n/en.i18n.json",
"i18n/sv.i18n.json"
], ["client", "server"]);
api.export('SwapTemp');
}