From b7e00f0d01c22cabf0af25d9ff8ced9a59412c36 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Tue, 31 Dec 2019 14:45:53 -0800 Subject: [PATCH] chore(storybook): set 9090 as default storybook port --- CONTRIBUTING.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ee488446..8e0af8ac 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -57,7 +57,7 @@ This project uses Storybook for UI development and "live" documentation. Run the following command to start the Storybook: ```bash -yarn start -p 9090 +yarn start ``` #### Component Format diff --git a/package.json b/package.json index c6471c70..1205e636 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "main": "lib/index.js", "module": "lib/index.mjs", "scripts": { - "start": "start-storybook", + "start": "start-storybook -p 9090", "build": "rollup -c", "build:storybook": "build-storybook -o docs", "test": "jest --coverage",