mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
fe60eab99c
* test: enable e2e * test: improve setup * chore: update setup * test: publish on temp folder * chore: initial setup example * chore: add global install to pnpm * chore: update test script * test: add info command * chore: add install tests * chore: add debug enabled code * chore: update pnpm lock file
18 lines
542 B
TypeScript
18 lines
542 B
TypeScript
import path from 'path';
|
|
import fs from 'fs';
|
|
|
|
export function createProject(projectName: string) {
|
|
// @ts-ignore
|
|
const tempRootFolder = global.__namespace.getItem('dir-suite-root');
|
|
const verdaccioInstall = path.join(tempRootFolder, projectName);
|
|
fs.mkdirSync(verdaccioInstall);
|
|
|
|
return verdaccioInstall;
|
|
}
|
|
export function copyConfigFile(rootFolder, configTemplate): string {
|
|
const configPath = path.join(rootFolder, 'verdaccio.yaml');
|
|
fs.copyFileSync(path.join(__dirname, configTemplate), configPath);
|
|
|
|
return configPath;
|
|
}
|