mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
17 lines
443 B
JavaScript
17 lines
443 B
JavaScript
Package.describe({
|
|
summary: "Reload the page while preserving application state.",
|
|
version: '1.1.2'
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use(['underscore', 'logging', 'json'], 'client');
|
|
api.export('Reload', 'client');
|
|
api.addFiles('reload.js', 'client');
|
|
api.addFiles('deprecated.js', 'client');
|
|
});
|
|
|
|
Package.onTest(function (api) {
|
|
api.use(['tinytest', 'reload'], 'client');
|
|
api.addFiles('reload_tests.js', 'client');
|
|
});
|