forked from PEM--/fview-rwdsimplemenu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
37 lines (36 loc) · 1.12 KB
/
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
Package.describe({
name: 'pierreeric:fview-rwdsimplemenu',
summary: 'Simple responsive menu plugin for famous-views',
version: '0.2.0',
git: 'https://github.com/PEM--/fview-rwdsimplemenu.git'
});
Package.onUse(function(api) {
api.versionsFrom('1.0');
// Both famo.us packages generally used in the Meteor community are
// included as weak references.
api.use('mjn:[email protected]_2', 'client', { weak: true });
api.use('raix:[email protected]', { weak: true });
// famous-views is integrated a mandatory reference.
api.use([
'coffeescript',
'blaze',
'templating',
'tracker',
'underscore',
'iron:[email protected]',
'gadicohen:[email protected]',
'gadicohen:[email protected]',
'fortawesome:[email protected]_2',
'pierreeric:[email protected]',
'pierreeric:[email protected]',
'pierreeric:[email protected]',
'pierreeric:[email protected]'
], 'client');
api.addFiles([
'fview-rwdsimplemenu.coffee',
'private_classes/hamburger.coffee',
'private_classes/main_menu.coffee',
'private_classes/top_menu.coffee',
'private_classes/side_menu.coffee',
], 'client');
});