forked from Meteor-Community-Packages/Meteor-CollectionFS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.js
28 lines (23 loc) · 783 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({
summary: "Filesystem for Meteor, collectionFS"
});
Package.on_use(function(api) {
api.use(['deps', 'underscore', 'templating']);
api.use('handlebars', 'client');
api.export('CollectionFS');
api.add_files([ 'myConsole.js' ], [ 'client', 'server' ]);
api.add_files([
'FileSaver.js',
'collectionFS_templates.html',
'collectionFS_client.js',
'collectionFS_client.api.js',
'collectionFS_handlebars.js'], 'client');
api.add_files([
'collectionFS_filesystem.js',
'collectionFS_server.js',
'collectionFS_filehandlers.js',
'collectionFS_server.api.js'], 'server');
api.add_files([
'collectionFS_common.js',
'numeral.js'], ['client', 'server']);
});