mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
18 lines
382 B
JavaScript
18 lines
382 B
JavaScript
Package.describe({
|
|
summary: "Dependency tracker to allow reactive callbacks",
|
|
version: '1.0.3'
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.export('Tracker');
|
|
api.export('Deps');
|
|
api.add_files('tracker.js');
|
|
api.add_files('deprecated.js');
|
|
});
|
|
|
|
Package.on_test(function (api) {
|
|
api.use('tinytest');
|
|
api.use('tracker');
|
|
api.add_files('tracker_tests.js', 'client');
|
|
});
|