More descriptive function names

This commit is contained in:
Hypnosphi 2018-09-08 21:17:11 +02:00
parent 618a3047c0
commit 66066251fe

View File

@ -5,7 +5,7 @@ import program from 'commander';
import path from 'path';
import fs from 'fs';
import chalk from 'chalk';
import detect from 'detect-port';
import detectFreePort from 'detect-port';
import inquirer from 'inquirer';
import { logger } from '@storybook/node-logger';
import storybook, { webpackValid } from './middleware';
@ -14,8 +14,8 @@ import './config/env';
const defaultFavIcon = require.resolve('./public/favicon.ico');
const getPort = port =>
detect(port).catch(error => {
const getFreePort = port =>
detectFreePort(port).catch(error => {
logger.error(error);
process.exit(-1);
});
@ -55,7 +55,7 @@ export async function buildDev({ packageJson, ...loadOptions }) {
configDir: 'SBCONFIG_CONFIG_DIR',
});
const port = await getPort(program.port);
const port = await getFreePort(program.port);
if (!program.smokeTest && program.port != null && port !== program.port) {
const { shouldChangePort } = await inquirer.prompt({