From 2994d68254e079abc41b1f6b7e8f05b7102cadac Mon Sep 17 00:00:00 2001 From: Sajib Adhikary <60180521+sajibAdhi@users.noreply.github.com> Date: Sun, 23 Apr 2023 23:58:39 +0600 Subject: [PATCH] Update part3-ci.md Part 3a:build code section update --- workshop/part3-ci.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workshop/part3-ci.md b/workshop/part3-ci.md index 0b38979..fec2f52 100644 --- a/workshop/part3-ci.md +++ b/workshop/part3-ci.md @@ -115,8 +115,8 @@ In the package.json add a new line to the script that runs **npx** and **parcel* "main": "index.js", // remove this line "scripts": { "test": "jest", // add the comma - "start": "parcel index.js", // add this line - "build": "parcel build index.js" // add this line + "start": "npx parcel index.js", // add this line + "build": "npx parcel build index.js" // add this line }, ```