UNPKG

better-npm-init

Version:

A better version of npm init, with templates and more. Usage: better-npm-init <template> [--yarn] [--install] [--git] [--yes] [--help]

26 lines (19 loc) 550 B
// @flow import Logger from '../Logger'; import { createGlobalProxyAgent, } from '../factories'; import type { ProxyAgentConfigurationInputType, } from '../types'; const log = Logger.child({ namespace: 'bootstrap', }); export default (configurationInput?: ProxyAgentConfigurationInputType): boolean => { if (global.GLOBAL_AGENT) { log.warn('found global.GLOBAL_AGENT; second attempt to bootstrap global-agent was ignored'); return false; } global.GLOBAL_AGENT = createGlobalProxyAgent(configurationInput); return true; };