Skip to content
Snippets Groups Projects
Commit 72dbe58a authored by Rhys Arkins's avatar Rhys Arkins
Browse files

chore: add path details to npmrc and yarnrc log

parent 242e2e34
No related branches found
No related tags found
No related merge requests found
......@@ -92,11 +92,11 @@ function determineLockFileDirs(config) {
async function writeExistingFiles(config) {
if (config.npmrc) {
logger.debug('Writing repo .npmrc');
logger.debug({ path: config.tmpDir.path }, 'Writing repo .npmrc');
await fs.outputFile(upath.join(config.tmpDir.path, '.npmrc'), config.npmrc);
}
if (config.yarnrc) {
logger.debug('Writing repo .yarnrc');
logger.debug({ path: config.tmpDir.path }, 'Writing repo .yarnrc');
await fs.outputFile(
upath.join(config.tmpDir.path, '.yarnrc'),
config.yarnrc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment