forked from apollographql/meteor-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
30 lines (26 loc) · 709 Bytes
/
package.js
File metadata and controls
30 lines (26 loc) · 709 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
28
29
30
Package.describe({
name: 'apollo',
version: '2.0.0',
summary: ' 🚀 Add Apollo to your Meteor app',
git: 'https://github.com/apollostack/meteor-integration',
});
Package.onUse(function(api) {
api.versionsFrom('1.4.2');
api.use(['ecmascript', 'accounts-base']);
api.mainModule('src/main-client.js', 'client');
api.mainModule('src/main-server.js', 'server');
});
Package.onTest(function(api) {
api.use([
'ecmascript',
'practicalmeteor:mocha',
'practicalmeteor:chai',
'practicalmeteor:mocha-console-runner',
'http',
'random',
'accounts-base',
'apollo',
]);
api.mainModule('tests/client.js', 'client');
api.mainModule('tests/server.js', 'server');
});