mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
13 lines
243 B
JavaScript
13 lines
243 B
JavaScript
Package.describe({
|
|
summary: "Register callbacks on a hook",
|
|
version: '1.0.0'
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.use('underscore', ['client', 'server']);
|
|
|
|
api.export('Hook');
|
|
|
|
api.add_files('hook.js', ['client', 'server']);
|
|
});
|