/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
packages/tools-core/package.js
23 строки
563 B
Italo José
Release 3.5.1 ⌛ (#14555)
06 авг 2026, 02:08
Не верифицирован
06 авг 2026, 02:08
efef960
Код
Авторство
О чём код?
Package.describe({ summary: "Helpers for managing modern tools in Meteor", version: '1.2.0', devOnly: true, }); Package.onUse(function (api) { api.use('ecmascript', ['client', 'server']); api.mainModule('tools-core.js', 'server'); }); Package.onTest(function (api) { api.use(['ecmascript', 'tinytest']); api.use('tools-core'); // Add test files for each lib/ module // This structure allows easy addition of tests for other lib/ categories api.addFiles([ 'tests/meteor_tests.js', 'tests/global_state_tests.js', ], 'server'); });