-
Notifications
You must be signed in to change notification settings - Fork 24.6k
/
Copy pathverdaccio.js
59 lines (50 loc) · 1.85 KB
/
verdaccio.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict-local
* @format
* @oncall react_native
*/
'use strict';
const {REPO_ROOT} = require('../../consts');
const {execSync, spawn} = require('child_process');
const fs = require('fs');
const path = require('path');
const NPM_CONFIG_PATH = path.join(REPO_ROOT, '.npmrc');
const VERDACCIO_CONFIG_PATH = path.join(__dirname, '..', 'verdaccio.yml');
const VERDACCIO_STORAGE_PATH = '/tmp/verdaccio';
const VERDACCIO_SERVER_URL = 'http://127.0.0.1:4873';
/**
* Configure and run a local Verdaccio server. This is an npm proxy that can be
* used with `npm publish` and `npm install`, configured in
* `scripts/e2e/verdaccio.yml`.
*/
function setupVerdaccio() /*: number */ {
const {host} = new URL(VERDACCIO_SERVER_URL);
// NOTE: Reading from/writing to an .npmrc in a workspaces project root is
// invalid from npm 9.x. Keyed config, such as `--registry`, should be
// specified in env vars or command invocations instead.
// See https://github.com/npm/cli/issues/6099
console.log(`Writing '.npmrc' to ${NPM_CONFIG_PATH}`);
fs.writeFileSync(NPM_CONFIG_PATH, `//${host}/:_authToken=secretToken\n`);
console.log(
`Invoking npx [email protected] --config ${VERDACCIO_CONFIG_PATH}`,
);
const verdaccioProcess = spawn(
'npx',
['[email protected]', '--config', VERDACCIO_CONFIG_PATH],
{env: {...process.env, VERDACCIO_STORAGE_PATH}},
);
console.log(`Invoking npx [email protected] ${VERDACCIO_SERVER_URL}`);
execSync(`npx [email protected] ${VERDACCIO_SERVER_URL}`);
console.log(`Verdaccio is ready at PID ${verdaccioProcess.pid}`);
return verdaccioProcess.pid;
}
module.exports = {
setupVerdaccio,
VERDACCIO_SERVER_URL,
VERDACCIO_STORAGE_PATH,
};