/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
packages/logic-solver/package.js
29 строк
790 B
Nacho Codoñer
Meteor version to 3.2 :comet:
18 мар 2025, 13:33
18 мар 2025, 13:33
5d2a7c8
Код
Авторство
О чём код?
Package.describe({ summary: "General satisfiability solver for logic problems", version: '3.1.0', }); Npm.depends({ 'lodash.has': '4.5.2' }); Package.onUse(function (api) { api.export('Logic'); api.use('ecmascript'); api.addFiles(['minisat.js', 'minisat_wrapper.js', 'types.js', 'logic.js', 'optimize.js']); }); Package.onTest(function (api) { api.use(['tinytest', 'check']); api.use('logic-solver'); // logic-solver is totally meant for the client too, but not old // ones like IE 8, so we have to exclude it from our automated // testing. It needs a browser released in the last year (say) so // that Emscripten-compiled code runs reasonably. api.addFiles('logic_tests.js', 'server'); });