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