-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
21 lines (20 loc) · 863 Bytes
/
package.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Package.describe({
name: 'nigtmere:infinite-scroll',
version: '0.9.7',
// Brief, one-line summary of the package.
summary: 'Template level infinite scrolling.',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/VolodymyrTymets/infinite-scroll',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.2');
api.use(['jquery', 'less', 'templating', 'jwo1f:[email protected]'], 'client');
api.use(['check', 'ecmascript'], ['client', 'server']);
api.export('InfiniteScroll');
api.addFiles('infiniteScroll.html', 'client');
api.addFiles('infinite-scroll.js', 'client');
api.addFiles('infinite-scroll.less', 'client');
});