forked from themeteorchef/bert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
38 lines (33 loc) · 873 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
Package.describe({
name: 'themeteorchef:bert',
version: '2.1.1',
summary: 'A client side, multi-style alerts system for Meteor.',
git: 'http://github.com/themeteorchef/bert',
documentation: 'README.md'
});
Package.onUse( function( api ) {
api.versionsFrom( '1.2.0.2' );
api.use([
'ecmascript',
'templating',
'session',
'jquery',
'fourseven:[email protected]_1',
'fortawesome:[email protected]'
], 'client');
api.addFiles([
'templates/bert-alert.html',
'templates/bert-alert.js',
'templates/body.html',
'stylesheets/colors.scss',
'stylesheets/flexbox.scss',
'stylesheets/bert.scss',
'bert.js',
], 'client');
api.export( 'Bert' );
});
Package.onTest(function (api) {
api.use( [ 'tinytest', 'session', 'jquery' ] );
api.use( 'themeteorchef:bert' );
api.addFiles( 'tests/client.js', 'client' );
});