forked from aldeed/meteor-cfs-autoform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
28 lines (23 loc) · 830 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: "cfs:autoform",
version: "2.2.1",
summary: "Upload files as part of autoform submission",
git: "https://github.com/aldeed/meteor-cfs-autoform.git"
});
Package.onUse(function(api) {
api.use('[email protected]', 'client');
api.use('[email protected]', 'client');
api.use('aldeed:[email protected] || 5.0.0');
api.use('cfs:[email protected]', ['client', 'server'], {weak: true});
api.use('raix:[email protected]', 'client');
// ensure standard packages are available globally incase the user didn't `meteor add cfs:standard-packages`
api.imply('cfs:standard-packages');
api.export('CfsAutoForm', 'client');
api.add_files([
'cfs-autoform.html',
'cfs-autoform-hooks.js',
'cfs-autoform-util.js',
'cfs-autoform.js',
'cfs-autoform.css'
], 'client');
});