forked from JackAdams/meteor-transactions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
34 lines (28 loc) · 1004 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
Package.describe({
name: "babrahams:transactions",
summary: "Undo/Redo stack based on transactions",
version: "0.6.20",
git: "https://github.com/jackadams/meteor-transactions.git"
});
Package.onUse(function (api, where) {
api.versionsFrom("1.0");
api.use('jquery', 'client');
api.use('tracker', 'client');
api.use('minimongo', 'client');
api.use('templating', 'client');
api.use('spacebars', 'client');
api.use('underscore');
api.use('mongo');
api.use('accounts-base');
api.imply('mongo');
api.use('dburles:[email protected]');
api.use('aldeed:[email protected]', ['client','server'], {weak:true});
api.add_files('lib/transactions_client.html', 'client');
api.add_files('lib/transactions_client.js', 'client');
api.add_files('lib/transactions_client.css', 'client');
api.add_files('lib/transactions_server.js', 'server');
api.add_files('lib/transactions_common.js', ['client','server']);
if (api.export) {
api.export('tx');
}
});