/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
packages/inter-process-messaging/package.js
24 строки
547 B
Italo José
Release 3.5.1 ⌛ (#14555)
06 авг 2026, 02:08
Не верифицирован
06 авг 2026, 02:08
efef960
Код
Авторство
О чём код?
Package.describe({ name: "inter-process-messaging", version: '0.1.3', summary: "Support for sending messages from the build process to the server process", documentation: "README.md" }); Npm.depends({ uuid: "8.3.2", arson: "0.2.6" }); Package.onUse(function(api) { api.use("modules"); api.use("promise"); api.mainModule("inter-process-messaging.js", "server"); }); Package.onTest(function(api) { api.use("ecmascript"); api.use("tinytest"); api.use("inter-process-messaging"); api.mainModule("tests.js", "server"); });