forked from themeteorites/blaze-magic-events
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
18 lines (17 loc) · 724 Bytes
/
package.js
File metadata and controls
18 lines (17 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Package.describe({
name: 'themeteorites:blaze-magic-events',
version: '0.0.4',
// Brief, one-line summary of the package.
summary: 'Adds angular2/react style event handler binding to Blaze.',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/themeteorites/blaze-magic-events',
// 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.1.0.2')
api.use(['blaze', 'grigio:babel@0.1.6', 'stevezhu:lodash@3.10.1'], 'client')
api.addFiles('events.es6.js', 'client')
api.export('__magicEvent')
})