/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
packages/deprecated/context/package.js
24 строки
561 B
Gabriel Grubba
Meteor version to 3.0-beta.7 :commet:
22 мар 2024, 21:37
22 мар 2024, 21:37
8393fee
Код
Авторство
О чём код?
Package.describe({ name: "context", version: '1.0.0-beta300.7', summary: "Manage contextual information without passing objects around", documentation: "README.md", deprecated: 'You should not be needing this package in Meteor 3' }); Npm.depends({ "@wry/context": "0.4.4" }); Package.onUse(function(api) { api.use("modules"); api.addFiles("server.js", "server"); api.mainModule("context.js"); }); Package.onTest(function(api) { api.use("ecmascript"); api.use("tinytest"); api.use("context"); api.mainModule("context-tests.js"); });