/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
packages/core-runtime/package.js
15 строк
454 B
denihs
Meteor version to 3.0 :comet:
15 июл 2024, 20:36
Не верифицирован
15 июл 2024, 20:36
b494499
Код
Авторство
О чём код?
Package.describe({ summary: "Core runtime to load packages and the app", version: '1.0.0', documentation: null }); Package.onUse(function (api) { // This package is linked differently since it sets up the runtime // the linker expects to exist. // Currently this package can not use any exports or ordered dependencies api.use('meteor', { unordered: true }); api.addFiles('package-registry.js'); api.addFiles('load-js-image.js'); });