From b0a9eed55435a038580cb7969b903cb593fb70b1 Mon Sep 17 00:00:00 2001 From: Hugo Bernier Date: Sun, 27 Mar 2022 00:22:26 -0400 Subject: [PATCH] Added gulp build --- Troubleshooting-issues-with-samples.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Troubleshooting-issues-with-samples.md b/Troubleshooting-issues-with-samples.md index f661e3c..1519143 100644 --- a/Troubleshooting-issues-with-samples.md +++ b/Troubleshooting-issues-with-samples.md @@ -33,10 +33,11 @@ Please note that warnings will rarely prevent the solution from working; We only ```mermaid graph TD - A[Run npm install] + A([Run npm install]) A --> B{Errors?} + B --> |No|([Try gulp build]) B --> |Yes| C{Are you in root of project?} --> |No| D[Change directory to root of project] --> |Retry|A - B --> |No| E{Running on Windows?} + C --> |Yes| E{Running on Windows?} E --> |Yes| F{Path too long?} --> |Yes| H[Move project to shorter path] --> |Retry|A E --> |No| K[Run spfx doctor] K --> J{Any reported issues?} --> |Yes| L[Fix issuen] --> |Retry|A