/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
packages/hot-code-push/package.js
19 строк
692 B
denihs
Meteor version to 3.0 :comet:
15 июл 2024, 20:36
Не верифицирован
15 июл 2024, 20:36
b494499
Код
Авторство
О чём код?
Package.describe({ name: 'hot-code-push', version: '1.0.5', // 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'); });