-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
21 lines (20 loc) · 919 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: 'jamgold:flow-animate-css',
version: '0.0.4_2',
// Brief, one-line summary of the package.
summary: 'Simple module to wait for animate.css animations before changing routes',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/jamgold/flow-animate-css.git',
// 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) {
// https://docs.meteor.com/packages/modules.html#Lazy-loading-modules-from-a-package
api.versionsFrom('1.6');
// this adds the modules package
api.use(['[email protected]','[email protected]'], 'client');
// we specify lazy as false so this will get imported automatically
// only on the client
api.mainModule('flow-animate-css.js','client',{lazy: false});
});