-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.js
27 lines (25 loc) · 893 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
Package.describe({
name: 'okgrow:router-autoscroll',
version: '0.1.8',
summary: 'Smart management of scroll position across route changes for Iron and Flow Router',
git: 'https://github.com/okgrow/router-autoscroll',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.0.3.1');
api.use('[email protected]');
api.use('reactive-dict');
api.use('reload');
api.use('iron:[email protected]', 'client', {weak: true});
api.use('kadira:[email protected]', 'client', {weak: true});
api.addFiles('client/hot-code-push.js', 'client');
api.addFiles('client/router-autoscroll.js', 'client');
api.export('RouterAutoscroll', 'client');
});
/* Package updated by okgrow:package-linter */
// TODO
// Package.onTest(function(api) {
// api.use('tinytest');
// api.use('router-autoscroll');
// api.addFiles('test/client/router-autoscroll-tests.js');
// });