forked from Xiangshen-Meng/meteor-autoform-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
28 lines (25 loc) · 747 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
Package.describe({
name: "shinn:autoform-file",
summary: "File upload for AutoForm",
description: "File upload for AutoForm",
version: "0.3.2",
git: "http://github.com/Xiangshen-Meng/meteor-autoform-file.git"
});
Package.onUse(function(api) {
api.versionsFrom('[email protected]');
api.use([
'check',
'coffeescript',
'underscore',
'reactive-var',
'templating',
'[email protected] || 2.5.0',
'aldeed:[email protected]',
'fortawesome:[email protected]',
'cfs:[email protected]'
]);
api.addFiles('lib/client/autoform-file.html', 'client');
api.addFiles('lib/client/autoform-file.less', 'client');
api.addFiles('lib/client/autoform-file.coffee', 'client');
api.addFiles('lib/server/publish.coffee', 'server');
});