forked from iron-meteor/iron-location
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
35 lines (26 loc) · 849 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
Package.describe({
name: 'iron:location',
summary: 'Reactive urls that work in IE8/9 and modern browsers.',
version: '1.0.11',
git: 'https://github.com/eventedmind/iron-location.git'
});
Package.on_use(function (api) {
api.versionsFrom('METEOR@0.9.2');
api.use('underscore');
api.use('tracker');
api.use('jquery');
api.use('iron:core@1.0.11');
api.imply('iron:core');
api.use('iron:url@1.0.11');
api.use('appcache', {weak: true});
api.add_files('lib/utils.js', 'client');
api.add_files('lib/state.js', 'client');
api.add_files('lib/location.js', 'client');
api.export(['urlToHashStyle', 'urlFromHashStyle'], 'client', {testOnly: true});
});
Package.on_test(function (api) {
api.use('iron:location');
api.use('tinytest');
api.use('test-helpers');
api.add_files('test/location_test.js', 'client');
});