From 48235ba79164978cb120b92c733786762ad32bd2 Mon Sep 17 00:00:00 2001 From: Maria Hutt Date: Wed, 22 Mar 2023 13:58:11 -0700 Subject: [PATCH] docs: update dev workflow instructions --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7184cf5f7d7..18349950c0e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -23,11 +23,11 @@ Thanks for your interest in contributing to Ionic's documentation! :tada: Check In order to run the documentation locally, install the dependencies and run the development server: ```sh -$ npm install +$ npm install --legacy-peer-deps $ npm start ``` -> **Note**: recent versions of npm (5+) and Node.js (10+) are required to run certain scripts. +> **Note**: certain versions of npm (5-8) and Node.js (10-16) are required to run certain scripts. ---