chore(docs): add plugin logs

This commit is contained in:
braks
2022-10-25 18:00:27 +02:00
committed by Braks
parent 560f2d5530
commit 1322951c98
2 changed files with 8 additions and 0 deletions

View File

@@ -37,7 +37,11 @@ export function copyChangelogPlugin(): Plugin {
const filePath = resolve(__dirname, `${path}`)
copyFile(filePath, resolve(__dirname, `../../changelog/${isCore ? 'index' : pkgName}.md`), () => {})
console.log(`Copied ${filePath} to ${resolve(__dirname, `../../changelog/${isCore ? 'index' : pkgName}.md`)}`)
})
console.log('Copied changelog files')
},
}
}

View File

@@ -23,7 +23,11 @@ export function copyVueFlowPlugin(): Plugin {
fileName: pkgName,
source: readFileSync(filePath, 'utf-8'),
})
console.log(`Copied ${filePath} to ${resolve(__dirname, `../../src/public/${pkgName}`)}`)
})
console.log('Copied vue-flow files')
},
}
}