-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
46 lines (37 loc) · 905 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
37
38
39
40
41
42
43
44
45
46
Package.describe({
summary: 'BDD testing APIs for the space:event-sourcing package',
name: 'space:testing-event-sourcing',
version: '3.1.0',
git: 'https://github.com/meteor-space/testing-event-sourcing.git',
debugOnly: true
});
Package.onUse(function(api) {
api.versionsFrom('1.2.0.1');
api.use([
'coffeescript',
'ecmascript',
'check',
'underscore',
'space:[email protected]',
'practicalmeteor:[email protected]'
]);
api.addFiles([
'source/allow-to-ignore-some-struct-types.js',
'source/aggregates-bdd-api.coffee'
], 'server');
});
Package.onTest(function(api) {
api.use([
'coffeescript',
'ecmascript',
'check',
'space:[email protected]',
'space:[email protected]',
'space:[email protected]',
'space:[email protected]',
'practicalmeteor:[email protected]'
]);
api.addFiles([
'tests/aggregate-test.unit.js'
], 'server');
});