nlu
Version:
Use this package to link your projects together for local development.
22 lines (16 loc) • 546 B
JavaScript
;
// note: only include dependencies in this file, which are in your project's package.json file
const path = require('path');
if (!path.isAbsolute(process.env.MY_DOCKER_R2G_SEARCH_ROOT || '')) {
throw new Error('Please set the env var "MY_DOCKER_R2G_SEARCH_ROOT" to an absolute folder path.');
}
exports.default = {
searchRoot: path.resolve(process.env.MY_DOCKER_R2G_SEARCH_ROOT),
tests: '',
packages: {
"@oresoftware/shell": true,
"prepend-transform": true,
"residence": true,
"json-stdio": true
}
};