2019-12-15 08:52:55 +01:00
|
|
|
import fs from "fs";
|
|
|
|
import path from "path";
|
|
|
|
import os from "os";
|
|
|
|
import {yellow} from "kleur";
|
|
|
|
import {spawn} from "child_process";
|
|
|
|
import { npm } from '../utils/process';
|
|
|
|
import * as __global from '../utils/global.js';
|
|
|
|
|
|
|
|
module.exports = async () => {
|
|
|
|
const tempRoot = fs.mkdtempSync(path.join(fs.realpathSync(os.tmpdir()), 'verdaccio-cli-e2e-'));
|
|
|
|
__global.addItem('dir-root', tempRoot);
|
|
|
|
console.log(yellow(`Add temp root folder: ${tempRoot}`));
|
|
|
|
fs.copyFileSync(
|
|
|
|
path.join(__dirname, '../config/_bootstrap_verdaccio.yaml'),
|
|
|
|
path.join(tempRoot, 'verdaccio.yaml'),
|
|
|
|
);
|
|
|
|
// @ts-ignore
|
|
|
|
global.__namespace = __global;
|
|
|
|
console.log(`current directory: ${process.cwd()}`);
|
|
|
|
// @ts-ignore
|
|
|
|
global.registryProcess = spawn(
|
|
|
|
'node',
|
2020-10-11 19:06:21 +02:00
|
|
|
[path.resolve('./bin/verdaccio'), '-c', './verdaccio.yaml'],
|
2019-12-15 22:18:47 +01:00
|
|
|
// @ts-ignore
|
2020-10-11 19:06:21 +02:00
|
|
|
{ cwd: tempRoot, silence: false },
|
2019-12-15 08:52:55 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
// publish current build version on local registry
|
|
|
|
await npm('publish', '--registry' ,'http://localhost:4873');
|
|
|
|
}
|