mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
10 lines
268 B
TypeScript
10 lines
268 B
TypeScript
|
import path from "path";
|
||
|
import fs from "fs";
|
||
|
|
||
|
export function copyConfigFile(rootFolder, configTemplate): string {
|
||
|
const configPath = path.join(rootFolder, 'verdaccio.yaml');
|
||
|
fs.copyFileSync(path.join(__dirname, configTemplate), configPath);
|
||
|
|
||
|
return configPath;
|
||
|
}
|