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