forked from jeffmitchel/meteor-local-persist
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.js
25 lines (20 loc) · 732 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
Package.describe({
name: 'frozeman:persistent-minimongo',
summary: 'Persistent Client-side Collections for Meteor using localstorage',
version: '0.1.8',
git: 'http://github.com/frozeman/meteor-persistent-minimongo'
});
Package.on_use(function (api) {
api.versionsFrom('[email protected]');
api.use('underscore', 'client');
api.use('[email protected]', 'client');
api.add_files('persistent-minimongo.js', 'client');
api.export('PersistentMinimongo', 'client');
});
Package.on_test(function (api) {
// api.use('underscore', 'client');
// api.use('amplify', 'client');
api.use('tinytest', 'client');
api.use('frozeman:persistent-minimongo', 'client');
api.add_files('persistent-minimongo-tests.js', 'client');
});