-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.js
More file actions
27 lines (24 loc) · 711 Bytes
/
Copy pathpackage.js
File metadata and controls
27 lines (24 loc) · 711 Bytes
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
Package.describe({
name: "gildaspk:autoform-file-materialize",
summary: "File upload for AutoForm with Materialize",
description: "File upload for AutoForm with Materialize",
version: "0.0.6",
git: "http://github.com/djhi/meteor-autoform-file-materialize.git"
});
Package.onUse(function(api) {
api.versionsFrom('METEOR@1.0');
api.use(
[
'coffeescript',
'reactive-var',
'underscore',
'templating',
'less',
'aldeed:autoform@5.1.1',
'cfs:dropped-event@0.0.10'
],
'client');
api.addFiles('lib/client/autoform-file.html', 'client');
api.addFiles('lib/client/autoform-file.less', 'client');
api.addFiles('lib/client/autoform-file.coffee', 'client');
});