From 5fd70ca47a73ac3cc66ae853f17f93367742e6e3 Mon Sep 17 00:00:00 2001 From: abelsquidhead Date: Mon, 9 Sep 2019 09:01:19 -0700 Subject: [PATCH] step 1. was slightly confusing. For someone that doesn't use git all the time, they might not know they need to go into the .gitignore file. The first time I read this I thought the direction was saying to rename the directory !node_modeules (#125) --- docs/javascript-action.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/javascript-action.md b/docs/javascript-action.md index 6772cae9..27a9e527 100644 --- a/docs/javascript-action.md +++ b/docs/javascript-action.md @@ -116,7 +116,7 @@ $ git checkout -b releases/v1 > NOTE: We will provide tooling and an action to automate this soon. Check in production dependencies: -1. **Do not ignore node_modules**: Add a `!` in front of the `node_modules` line. +1. **Do not ignore node_modules**: Add a `!` in front of the `node_modules` line in the file .gitignore. 2. **Delete node_modules**: rm -Rf node_modules 3. **Install production dependencies**: npm install --production 4. **Add**: git add node_modules