/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
packages/meteor-base/package.js
32 строки
1 KB
denihs
Meteor version to 3.0 :comet:
15 июл 2024, 20:36
Не верифицирован
15 июл 2024, 20:36
b494499
Код
Авторство
О чём код?
Package.describe({ name: 'meteor-base', version: '1.5.2', // Brief, one-line summary of the package. summary: 'Packages that every Meteor app needs', // 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) { api.imply([ // Super basic stuff about where your code is running and async utilities 'meteor', // This package enables making client-server connections; currently Meteor // only supports building client/server web applications so this is not // removable 'webapp', // The protocol and client/server libraries that Meteor uses to send data 'ddp', // This package uses the user agent of each incoming HTTP request to // decide whether to inject <script> tags into the <head> of the // response document to polyfill ECMAScript 5 support. 'es5-shim', // Push code changes to the client and automatically reload the page 'hot-code-push' ]); });