Files
meteor/packages/hot-code-push/package.js
Ben Newman 4f5cb1d7a0 Bump package versions for 1.3-beta.16 release.
What happened to beta.13, beta.14, and beta.15? All unfortunately suffered
from problems that made it either impossible or unwise to upgrade to those
versions.
2016-03-09 12:13:18 -05:00

20 lines
700 B
JavaScript

Package.describe({
name: 'hot-code-push',
version: '1.0.1-beta.16',
// Brief, one-line summary of the package.
summary: 'Update the client in place when new code is available.',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/meteor/meteor',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
Package.onUse(function(api) {
// Notifies the client when new versions of the app are available
api.imply('autoupdate');
// Reloads the page with an API to maintain data across the reload
api.imply('reload');
});