-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
36 lines (33 loc) · 932 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
Package.describe({
name: 'smaltcreation:autoform-file',
version: '0.0.1',
summary: 'File input for autoform',
git: 'https://github.com/SmaltCreation/meteor-autoform-file.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.1.0.3');
api.export('Smalt', 'client');
// Packages
api.use([
'underscore',
'templating',
'tracker',
'aldeed:[email protected]'
], 'client');
// Files
api.addFiles([
// Lib
'lib/client/lib/container.js',
'lib/client/lib/file/new.js',
'lib/client/lib/file/uploaded.js',
'lib/client/lib/input.js',
// Input
'lib/client/input/input.html',
'lib/client/input/input.js',
// Preview
'lib/client/preview/preview.html',
'lib/client/preview/preview.js',
'lib/client/preview/preview.css'
], 'client');
});