From 0818b5eeffd9b1a8d80ac7ab6afa14151a92efeb Mon Sep 17 00:00:00 2001 From: Olivier Tassinari Date: Mon, 13 Jul 2020 16:34:21 +0200 Subject: [PATCH] [core] Use the same start command as main (#1975) Co-authored-by: Dmitriy Kovalenko --- CONTRIBUTING.md | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0fe133d0bdbe3d..d701a2af5d84bf 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -32,7 +32,7 @@ We are using yarn for development and linking, so you need to make ```sh yarn -yarn dev +yarn docs:dev ``` to start the development environment and to be sure the `lib` folder is linked properly to the `docs` and your changes will be applied to the docs website. diff --git a/package.json b/package.json index be129056860219..99d7d37e2bb96c 100644 --- a/package.json +++ b/package.json @@ -15,8 +15,8 @@ "node": ">=8.0.0" }, "scripts": { - "start": "yarn dev", - "dev": "yarn workspace docs dev", + "start": "yarn docs:dev", + "docs:dev": "yarn workspace docs dev", "e2e:run": "cypress run", "e2e:open": "cypress open", "docgen": "node docs/scripts/docgen.js",