-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
35 lines (28 loc) · 772 Bytes
/
Copy pathpackage.js
File metadata and controls
35 lines (28 loc) · 772 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
31
32
33
34
Package.describe( {
name : 'miro:devtools',
version: '0.0.1',
summary: 'Meteor debugging with Chrome DevTools',
git : 'https://github.com/MiroHibler/meteor-devtools',
});
Package.onUse( function ( api ) {
api.versionsFrom( '1.0.3.1' );
// Prerequisite packages
api.use([
'templating',
'session'
], 'client' );
api.use([
'tracker',
'reactive-var',
'underscore',
], ['client', 'server'] );
api.addFiles( 'lib/both/devtools.js', ['server', 'client'] );
api.addFiles( 'lib/server/devtools.js', 'server' );
api.addFiles( 'lib/client/devtools.js', 'client' );
api.export( 'DevTools', ['server', 'client'] );
});
Package.onTest( function ( api ) {
api.use( 'tinytest' );
api.use( 'miro:devtools' );
api.addFiles( 'devtools-tests.js' );
});