UNPKG

find-node-modules

Version:

Return an array of all parent node_modules directories

20 lines (18 loc) 491 B
// https://confluence.atlassian.com/bamboo/bamboo-variables-289277087.html module.exports = { detect({env}) { return Boolean(env.bamboo_agentId); }, configuration({env}) { return { name: 'Bamboo', service: 'bamboo', commit: env.bamboo_planRepository_1_revision, build: env.bamboo_buildNumber, buildUrl: env.bamboo_buildResultsUrl, branch: env.bamboo_planRepository_1_branchName, job: env.bamboo_buildKey, root: env.bamboo_build_working_directory, }; }, };