mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
More descriptive function names
This commit is contained in:
parent
618a3047c0
commit
66066251fe
@ -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({
|
||||
|
Loading…
x
Reference in New Issue
Block a user