diff --git a/addons/docs/docs/docspage.md b/addons/docs/docs/docspage.md index 3d4917ac721..7931352785a 100644 --- a/addons/docs/docs/docspage.md +++ b/addons/docs/docs/docspage.md @@ -52,7 +52,7 @@ import { Badge } from './Badge'; storiesOf('Path/to/Badge', module).addParameters({ component: Badge }); ``` -If you're coming from the`storiesOf` format, there's [a codemod that adds it for you](https://github.com/storybookjs/storybook/blob/next/lib/codemod/README.md#add-component-parameters). +If you're coming from the `storiesOf` format, there's [a codemod that adds it for you](https://github.com/storybookjs/storybook/blob/next/lib/codemod/README.md#add-component-parameters). ## DocsPage slots diff --git a/lib/core/src/server/build-dev.js b/lib/core/src/server/build-dev.js index 51542db69b0..9657655a98e 100644 --- a/lib/core/src/server/build-dev.js +++ b/lib/core/src/server/build-dev.js @@ -310,16 +310,19 @@ export async function buildDevStandalone(options) { warning += managerStats.toJson().warnings.length; process.exit(warning ? 1 : 0); - } else if (!options.ci) { - outputStartupInformation({ - updateInfo, - version, - address, - networkAddress, - managerTotalTime, - previewTotalTime, - }); + return; + } + outputStartupInformation({ + updateInfo, + version, + address, + networkAddress, + managerTotalTime, + previewTotalTime, + }); + + if (!options.ci) { openInBrowser(address); } } catch (error) {