mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
chore: extend lint rules to root
This commit is contained in:
parent
e61bd6c78f
commit
9ed932e589
41 changed files with 84 additions and 160 deletions
|
@ -109,7 +109,6 @@
|
|||
"@typescript-eslint/ban-ts-ignore": 0,
|
||||
"@typescript-eslint/no-var-requires": 0,
|
||||
"@typescript-eslint/no-inferrable-types": 0,
|
||||
"@typescript-eslint/interface-name-prefix": 0,
|
||||
"@typescript-eslint/no-empty-function": 0,
|
||||
"@typescript-eslint/no-this-alias": 0,
|
||||
"@typescript-eslint/no-use-before-define": 0,
|
||||
|
|
2
debug/bootstrap.js
vendored
2
debug/bootstrap.js
vendored
|
@ -1,6 +1,6 @@
|
|||
// this file aims to help local debugging with hot transpilation
|
||||
// it requires BABEL_ENV=registry set as env variable
|
||||
require('@babel/register')({
|
||||
extensions: [".ts", ".js"]
|
||||
extensions: ['.ts', '.js'],
|
||||
});
|
||||
require('../packages/cli/src/index');
|
||||
|
|
|
@ -5,11 +5,6 @@ module.exports = {
|
|||
},
|
||||
verbose: false,
|
||||
collectCoverage: true,
|
||||
collectCoverageFrom: [
|
||||
"src/**/*.ts",
|
||||
"!**/node_modules/**",
|
||||
"!**/partials/**",
|
||||
"!**/fixture/**",
|
||||
],
|
||||
collectCoverageFrom: ['src/**/*.ts', '!**/node_modules/**', '!**/partials/**', '!**/fixture/**'],
|
||||
coveragePathIgnorePatterns: ['node_modules', 'fixtures'],
|
||||
};
|
||||
|
|
|
@ -101,7 +101,7 @@
|
|||
"clean": "pnpm recursive run clean",
|
||||
"build": "pnpm recursive run build",
|
||||
"docker": "docker build -t verdaccio/verdaccio:local . --no-cache",
|
||||
"lint": "eslint \"packages/**/@(src|tests|test)/**\"",
|
||||
"lint": "eslint . --ext .js,.ts,.tsx,.jsx",
|
||||
"test": "pnpm recursive test",
|
||||
"test:e2e:cli": "cross-env NODE_ENV=test jest --config ./test/e2e-cli/jest.config.e2e.cli.js --passWithNoTests",
|
||||
"website:lint": "cd website && yarn lint",
|
||||
|
|
|
@ -1,19 +1,19 @@
|
|||
const setup = jest.fn();
|
||||
const logger = {
|
||||
const logger = {
|
||||
child: jest.fn(() => ({
|
||||
debug: jest.fn(),
|
||||
trace: jest.fn(),
|
||||
warn: jest.fn(),
|
||||
info: jest.fn(),
|
||||
error: jest.fn(),
|
||||
trace: jest.fn(),
|
||||
warn: jest.fn(),
|
||||
info: jest.fn(),
|
||||
error: jest.fn(),
|
||||
fatal: jest.fn(),
|
||||
})),
|
||||
debug: jest.fn(),
|
||||
trace: jest.fn(),
|
||||
warn: jest.fn(),
|
||||
info: jest.fn(),
|
||||
error: jest.fn(),
|
||||
trace: jest.fn(),
|
||||
warn: jest.fn(),
|
||||
info: jest.fn(),
|
||||
error: jest.fn(),
|
||||
fatal: jest.fn(),
|
||||
};
|
||||
|
||||
export { setup, logger }
|
||||
export { setup, logger };
|
||||
|
|
2
packages/api/types/custom.d.ts
vendored
2
packages/api/types/custom.d.ts
vendored
|
@ -1,4 +1,4 @@
|
|||
import { Logger, RemoteUser } from "@verdaccio/types";
|
||||
import { Logger, RemoteUser } from '@verdaccio/types';
|
||||
|
||||
declare global {
|
||||
namespace Express {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
const config = require('../../jest/config');
|
||||
|
||||
module.exports = Object.assign({}, config, {});
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
const config = require('../../jest/config');
|
||||
|
||||
module.exports = Object.assign({}, config, {});
|
||||
|
||||
|
|
|
@ -3,4 +3,3 @@ const config = require('../../jest/config');
|
|||
module.exports = Object.assign({}, config, {
|
||||
verbose: true,
|
||||
});
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
const config = require('../../jest/config');
|
||||
|
||||
module.exports = Object.assign({}, config, {
|
||||
collectCoverage: true
|
||||
collectCoverage: true,
|
||||
});
|
||||
|
||||
|
|
4
packages/middleware/types/custom.d.ts
vendored
4
packages/middleware/types/custom.d.ts
vendored
|
@ -1,7 +1,7 @@
|
|||
// <reference types="node" />
|
||||
|
||||
import { Logger, RemoteUser } from "@verdaccio/types";
|
||||
import * as http from "http";
|
||||
import * as http from 'http';
|
||||
import { Logger, RemoteUser } from '@verdaccio/types';
|
||||
|
||||
declare global {
|
||||
namespace Express {
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
const config = require('../../jest/config');
|
||||
|
||||
module.exports = Object.assign({}, config, {
|
||||
collectCoverage: true
|
||||
collectCoverage: true,
|
||||
});
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
const config = require('../../jest/config');
|
||||
|
||||
module.exports = Object.assign({}, config, {
|
||||
collectCoverage: true
|
||||
collectCoverage: true,
|
||||
});
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
const config = require('../../jest/config');
|
||||
|
||||
module.exports = Object.assign({}, config, {
|
||||
collectCoverage: true
|
||||
collectCoverage: true,
|
||||
});
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
const config = require('../../jest/config');
|
||||
|
||||
module.exports = Object.assign({}, config, {
|
||||
setupFilesAfterEnv: ['./jest.setup.js']
|
||||
setupFilesAfterEnv: ['./jest.setup.js'],
|
||||
});
|
||||
|
||||
|
|
2
packages/server/types/custom.d.ts
vendored
2
packages/server/types/custom.d.ts
vendored
|
@ -1,4 +1,4 @@
|
|||
import { Logger, RemoteUser } from "@verdaccio/types";
|
||||
import { Logger, RemoteUser } from '@verdaccio/types';
|
||||
|
||||
declare global {
|
||||
namespace Express {
|
||||
|
|
|
@ -2,6 +2,5 @@ const config = require('../../jest/config');
|
|||
|
||||
module.exports = Object.assign({}, config, {
|
||||
// FIXME: coverage fails here
|
||||
collectCoverage: true
|
||||
collectCoverage: true,
|
||||
});
|
||||
|
||||
|
|
2
packages/types/custom.d.ts
vendored
2
packages/types/custom.d.ts
vendored
|
@ -1,4 +1,4 @@
|
|||
import { Logger, RemoteUser } from "@verdaccio/types";
|
||||
import { Logger, RemoteUser } from '@verdaccio/types';
|
||||
|
||||
declare global {
|
||||
namespace Express {
|
||||
|
|
|
@ -17,13 +17,13 @@ import {
|
|||
Package,
|
||||
IPluginStorageFilter,
|
||||
Author,
|
||||
AuthPluginPackage,
|
||||
AuthPluginPackage,
|
||||
Token,
|
||||
ITokenActions,
|
||||
TokenFilter
|
||||
TokenFilter,
|
||||
} from '@verdaccio/types';
|
||||
import lunrMutable from 'lunr-mutable-indexes';
|
||||
import {NextFunction, Request, Response} from 'express';
|
||||
import { NextFunction, Request, Response } from 'express';
|
||||
|
||||
export type StringValue = verdaccio$StringValue;
|
||||
|
||||
|
@ -42,13 +42,13 @@ export interface LegacyPackageList {
|
|||
export type PackageAccessAddOn = PackageAccess & {
|
||||
// FIXME: should be published on @verdaccio/types
|
||||
unpublish?: string[];
|
||||
}
|
||||
};
|
||||
|
||||
export type MatchedPackage = PackageAccess | void;
|
||||
|
||||
export type JWTPayload = RemoteUser & {
|
||||
password?: string;
|
||||
}
|
||||
};
|
||||
|
||||
export interface AESPayload {
|
||||
user: string;
|
||||
|
@ -92,10 +92,10 @@ export interface Profile {
|
|||
fullname: string;
|
||||
}
|
||||
|
||||
export type $RequestExtend = Request & {remote_user?: any; log: Logger}
|
||||
export type $ResponseExtend = Response & {cookies?: any}
|
||||
export type $RequestExtend = Request & { remote_user?: any; log: Logger };
|
||||
export type $ResponseExtend = Response & { cookies?: any };
|
||||
export type $NextFunctionVer = NextFunction & any;
|
||||
export type $SidebarPackage = Package & {latest: any}
|
||||
export type $SidebarPackage = Package & { latest: any };
|
||||
|
||||
export interface IAuthWebUI {
|
||||
jwtEncrypt(user: RemoteUser, signOptions: JWTSignOptions): Promise<string>;
|
||||
|
@ -194,4 +194,3 @@ export interface Styles {
|
|||
}
|
||||
|
||||
export type AuthorAvatar = Author & { avatar?: string };
|
||||
|
||||
|
|
2
packages/verdaccio/debug/bootstrap.js
vendored
2
packages/verdaccio/debug/bootstrap.js
vendored
|
@ -1,6 +1,6 @@
|
|||
// this file aims to help local debugging with hot transpilation
|
||||
// it requires BABEL_ENV=registry set as env variable
|
||||
require('@babel/register')({
|
||||
extensions: [".ts"]
|
||||
extensions: ['.ts'],
|
||||
});
|
||||
require('@verdaccio/cli');
|
||||
|
|
|
@ -10,7 +10,7 @@ module.exports = {
|
|||
// Some unit tests rely on data folders that look like packages. This confuses jest-hast-map
|
||||
// when it tries to scan for package.json files.
|
||||
transform: {
|
||||
'^.+\\.[t|j]sx?$': 'babel-jest'
|
||||
'^.+\\.[t|j]sx?$': 'babel-jest',
|
||||
},
|
||||
modulePathIgnorePatterns: [
|
||||
'<rootDir>/test/unit/partials/mock-store/.*/package.json',
|
||||
|
@ -28,14 +28,6 @@ module.exports = {
|
|||
'<rootDir>/build',
|
||||
'<rootDir>/.vscode/',
|
||||
],
|
||||
testPathIgnorePatterns: [
|
||||
'__snapshots__',
|
||||
'<rootDir>/build',
|
||||
],
|
||||
coveragePathIgnorePatterns: [
|
||||
'node_modules',
|
||||
'fixtures',
|
||||
'<rootDir>/src/api/debug',
|
||||
'<rootDir>/test',
|
||||
]
|
||||
testPathIgnorePatterns: ['__snapshots__', '<rootDir>/build'],
|
||||
coveragePathIgnorePatterns: ['node_modules', 'fixtures', '<rootDir>/src/api/debug', '<rootDir>/test'],
|
||||
};
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
const config = require('../../jest/config');
|
||||
|
||||
module.exports = Object.assign({}, config, {});
|
||||
|
||||
|
|
2
packages/web/types/custom.d.ts
vendored
2
packages/web/types/custom.d.ts
vendored
|
@ -1,4 +1,4 @@
|
|||
import { Logger, RemoteUser } from "@verdaccio/types";
|
||||
import { Logger, RemoteUser } from '@verdaccio/types';
|
||||
|
||||
declare global {
|
||||
namespace Express {
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
// this file aims to help local debugging with hot transpilation
|
||||
// it requires BABEL_ENV=registry set as env variable
|
||||
require('@babel/register')({
|
||||
extensions: [".ts", ".js"]
|
||||
extensions: ['.ts', '.js'],
|
||||
});
|
||||
require('../src/lib/cli');
|
||||
|
|
|
@ -15,7 +15,7 @@ const octokit = new Octokit({
|
|||
const [repoOwner, repoName] = process.env.GITHUB_REPOSITORY.split('/');
|
||||
|
||||
getStdin()
|
||||
.then(changelog =>
|
||||
.then((changelog) =>
|
||||
octokit.repos.createRelease({
|
||||
owner: repoOwner,
|
||||
repo: repoName,
|
||||
|
@ -24,7 +24,7 @@ getStdin()
|
|||
draft: false,
|
||||
})
|
||||
)
|
||||
.catch(err => {
|
||||
.catch((err) => {
|
||||
// eslint-disable-next-line no-console
|
||||
console.error(err);
|
||||
process.exit(1);
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"rules": {
|
||||
"no-console": 0,
|
||||
"@typescript-eslint/no-var-requires": 0,
|
||||
"@typescript-eslint/explicit-member-accessibility": 0
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require('@babel/register')({
|
||||
extensions: [".ts", ".js"]
|
||||
extensions: ['.ts', '.js'],
|
||||
});
|
||||
module.exports = require('./setup/test_environment');
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require('@babel/register')({
|
||||
extensions: [".ts", ".js"]
|
||||
extensions: ['.ts', '.js'],
|
||||
});
|
||||
module.exports = require('./setup/setup');
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require('@babel/register')({
|
||||
extensions: [".ts", ".js"]
|
||||
extensions: ['.ts', '.js'],
|
||||
});
|
||||
module.exports = require('./setup/teardown');
|
||||
|
|
|
@ -8,5 +8,5 @@ module.exports = {
|
|||
testEnvironment: './env_babel.js',
|
||||
globalSetup: './env_setup.js',
|
||||
globalTeardown: './env_teardown.js',
|
||||
testRegex: '(/test/e2e.*\\.spec)\\.ts'
|
||||
testRegex: '(/test/e2e.*\\.spec)\\.ts',
|
||||
};
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
module.exports = function() {
|
||||
const message = "this is a basic project";
|
||||
module.exports = function () {
|
||||
const message = 'this is a basic project';
|
||||
console.log(message);
|
||||
|
||||
return message;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
module.exports = function() {
|
||||
const message = "this is a scoped basic project";
|
||||
module.exports = function () {
|
||||
const message = 'this is a scoped basic project';
|
||||
console.log(message);
|
||||
|
||||
return message;
|
||||
|
|
|
@ -1,44 +1,27 @@
|
|||
import fs from 'fs';
|
||||
import path from 'path';
|
||||
import os from 'os';
|
||||
import { green } from 'kleur';
|
||||
import { spawn } from 'child_process';
|
||||
import { yellow } from 'kleur';
|
||||
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-'));
|
||||
const tempConfigFile = path.join(tempRoot, 'verdaccio.yaml');
|
||||
__global.addItem('dir-root', tempRoot);
|
||||
console.log(green(`Global temp root folder: ${tempRoot}`));
|
||||
fs.copyFileSync(path.join(__dirname, '../config/_bootstrap_verdaccio.yaml'), tempConfigFile);
|
||||
console.log(green(`global temp root conf: ${tempConfigFile}`));
|
||||
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()}`);
|
||||
const rootVerdaccio = path.resolve('./bin/verdaccio');
|
||||
console.log(green(`verdaccio root path: ${rootVerdaccio}`));
|
||||
// @ts-ignore
|
||||
global.registryProcess = spawn('node', [path.resolve('./bin/verdaccio'), '-c', './verdaccio.yaml'], {
|
||||
cwd: tempRoot,
|
||||
// stdio: 'pipe'
|
||||
});
|
||||
|
||||
// @ts-ignore
|
||||
global.registryProcess.stdout.on('data', (data) => {
|
||||
console.log(`stdout: ${data}`);
|
||||
});
|
||||
|
||||
// @ts-ignore
|
||||
global.registryProcess.stderr.on('data', (data) => {
|
||||
console.log(`stderr: ${data}`);
|
||||
});
|
||||
|
||||
// @ts-ignore
|
||||
global.registryProcess.on('close', (code) => {
|
||||
console.log(`child process exited with code ${code}`);
|
||||
});
|
||||
global.registryProcess = spawn(
|
||||
'node',
|
||||
[require.resolve('verdaccio/bin/verdaccio'), '-c', './verdaccio.yaml'],
|
||||
// @ts-ignore
|
||||
{ cwd: tempRoot, silence: true }
|
||||
);
|
||||
|
||||
// publish current build version on local registry
|
||||
await npm('publish', '--registry', 'http://localhost:4873', '--verbose');
|
||||
await npm('publish', '--registry', 'http://localhost:4873');
|
||||
};
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const fs = require('fs');
|
||||
import os from 'os';
|
||||
import path from 'path';
|
||||
import NodeEnvironment from 'jest-environment-node';
|
||||
const fs = require('fs');
|
||||
const __global = require('../utils/global');
|
||||
|
||||
class E2ECliTestEnvironment extends NodeEnvironment {
|
||||
|
|
|
@ -1,14 +1,5 @@
|
|||
import { silentNpm } from '../../utils/process';
|
||||
|
||||
export function installVerdaccio(verdaccioInstall) {
|
||||
return silentNpm(
|
||||
'install',
|
||||
'--prefix',
|
||||
verdaccioInstall,
|
||||
'verdaccio',
|
||||
'--registry',
|
||||
'http://localhost:4873',
|
||||
'--no-package-lock',
|
||||
'--verbose'
|
||||
);
|
||||
return silentNpm('install', '--prefix', verdaccioInstall, 'verdaccio', '--registry', 'http://localhost:4873', '--no-package-lock');
|
||||
}
|
||||
|
|
|
@ -3,6 +3,7 @@ import { runVerdaccio } from '../../utils/process';
|
|||
import { installVerdaccio } from '../__partials/npm_commands';
|
||||
|
||||
describe('verdaccio info', () => {
|
||||
jest.setTimeout(90000);
|
||||
// @ts-ignore
|
||||
const tempRootFolder = global.__namespace.getItem('dir-root');
|
||||
const verdaccioInstall = path.join(tempRootFolder, 'verdaccio-root-info');
|
||||
|
@ -10,21 +11,16 @@ describe('verdaccio info', () => {
|
|||
|
||||
beforeAll(async () => {
|
||||
await installVerdaccio(verdaccioInstall);
|
||||
}, 30000);
|
||||
});
|
||||
|
||||
test('should run verdaccio info command', async () => {
|
||||
const pathVerdaccioModule = require.resolve('verdaccio/bin/verdaccio', {
|
||||
paths: [verdaccioInstall]
|
||||
paths: [verdaccioInstall],
|
||||
});
|
||||
const hasMatch = await runVerdaccio(
|
||||
pathVerdaccioModule,
|
||||
verdaccioInstall,
|
||||
['--info'],
|
||||
/Environment/
|
||||
);
|
||||
const hasMatch = await runVerdaccio(pathVerdaccioModule, verdaccioInstall, ['--info'], /Environment/);
|
||||
|
||||
expect(hasMatch.ok).toBeTruthy();
|
||||
}, 20000);
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
registryProcess.kill();
|
||||
|
|
|
@ -21,13 +21,10 @@ describe('npm install', () => {
|
|||
|
||||
test('should match the listing port and load metadata', async () => {
|
||||
const pathVerdaccioModule = require.resolve('verdaccio/bin/verdaccio', {
|
||||
paths: [verdaccioInstall]
|
||||
paths: [verdaccioInstall],
|
||||
});
|
||||
|
||||
registryProcess = await spawnRegistry(pathVerdaccioModule, ['-c', configPath, '-l', port], {
|
||||
cwd: verdaccioInstall,
|
||||
silent: false
|
||||
});
|
||||
registryProcess = await spawnRegistry(pathVerdaccioModule, ['-c', configPath, '-l', port], { cwd: verdaccioInstall, silent: true });
|
||||
|
||||
const body = await callRegistry(`http://localhost:${port}/verdaccio`);
|
||||
const parsedBody = JSON.parse(body);
|
||||
|
|
|
@ -23,39 +23,25 @@ describe('npm install', () => {
|
|||
// @ts-ignore
|
||||
global.__namespace = __global;
|
||||
const pathVerdaccioModule = require.resolve('verdaccio/bin/verdaccio', {
|
||||
paths: [verdaccioInstall]
|
||||
});
|
||||
registryProcess = await spawnRegistry(pathVerdaccioModule, ['-c', configPath, '-l', port], {
|
||||
cwd: verdaccioInstall,
|
||||
silent: true
|
||||
paths: [verdaccioInstall],
|
||||
});
|
||||
registryProcess = await spawnRegistry(pathVerdaccioModule, ['-c', configPath, '-l', port], { cwd: verdaccioInstall, silent: true });
|
||||
});
|
||||
|
||||
test('should match on npm info verdaccio', async () => {
|
||||
// FIXME: not the best match, looking for a better way to match the terminal output
|
||||
const output = await execAndWaitForOutputToMatch(
|
||||
'npm',
|
||||
['info', 'verdaccio', '--registry'],
|
||||
/A lightweight private npm proxy registry/
|
||||
);
|
||||
const output = await execAndWaitForOutputToMatch('npm', ['info', 'verdaccio', '--registry'], /A lightweight private npm proxy registry/);
|
||||
|
||||
expect(output.ok).toBeTruthy();
|
||||
});
|
||||
|
||||
test('should install jquery', async () => {
|
||||
const testCwd = path.join(tempRootFolder, '_jquery_');
|
||||
await execAndWaitForOutputToMatch(
|
||||
'npm',
|
||||
['install', '--prefix', testCwd, 'jquery', '--registry', `http://localhost:${port}`],
|
||||
/''/,
|
||||
{
|
||||
cwd: verdaccioInstall
|
||||
}
|
||||
);
|
||||
await execAndWaitForOutputToMatch('npm', ['install', '--prefix', testCwd, 'jquery', '--registry', `http://localhost:${port}`], /''/, {
|
||||
cwd: verdaccioInstall,
|
||||
});
|
||||
|
||||
const exist = await expectFileToExist(
|
||||
path.join(testCwd, 'node_modules', 'jquery', 'package.json')
|
||||
);
|
||||
const exist = await expectFileToExist(path.join(testCwd, 'node_modules', 'jquery', 'package.json'));
|
||||
expect(exist).toBeTruthy();
|
||||
});
|
||||
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
const namespace = Object.create(null);
|
||||
|
||||
exports.addItem = function(name, value) {
|
||||
exports.addItem = function (name, value) {
|
||||
namespace[name] = value;
|
||||
}
|
||||
};
|
||||
|
||||
exports.getItem = function(name) {
|
||||
console.log("get-item", name, namespace);
|
||||
exports.getItem = function (name) {
|
||||
console.log('get-item', name, namespace);
|
||||
if (!(name in namespace)) {
|
||||
throw new Error("The item ".concat(name, " does exist in the namespace"));
|
||||
throw new Error('The item '.concat(name, ' does exist in the namespace'));
|
||||
}
|
||||
|
||||
return namespace[name];
|
||||
}
|
||||
};
|
||||
|
|
|
@ -12,7 +12,7 @@ export async function _exec(options, cmd, args) {
|
|||
console.log(`ENV: ${JSON.stringify(env)}`);
|
||||
const spawnOptions = {
|
||||
cwd,
|
||||
...(env ? { env } : {})
|
||||
...(env ? { env } : {}),
|
||||
};
|
||||
|
||||
if (process.platform.startsWith('win')) {
|
||||
|
@ -76,12 +76,7 @@ export async function _exec(options, cmd, args) {
|
|||
});
|
||||
}
|
||||
|
||||
export function execAndWaitForOutputToMatch(
|
||||
cmd: string,
|
||||
args: string[],
|
||||
match: RegExp,
|
||||
spawnOptions: SpawnOptions = {}
|
||||
): any {
|
||||
export function execAndWaitForOutputToMatch(cmd: string, args: string[], match: RegExp, spawnOptions: SpawnOptions = {}): any {
|
||||
return _exec({ waitForMatch: match, ...spawnOptions, silence: true }, cmd, args);
|
||||
}
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ export function callRegistry(url: string): Promise<string> {
|
|||
return new Promise((resolve, reject) => {
|
||||
let options = {
|
||||
url: url,
|
||||
headers: { Accept: 'application/json' }
|
||||
headers: { Accept: 'application/json' },
|
||||
};
|
||||
// @ts-ignore
|
||||
request(options, (error: any, response: IncomingMessage, body: string) => {
|
||||
|
|
Loading…
Reference in a new issue