From b0fbd6fc1a0b47b2c29bb9af1201922670129886 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Sun, 29 Apr 2018 23:46:02 -0400 Subject: [PATCH] Add note about using the node_modules version of gulp if the system version doesn't exist or is 3.x or lower --- readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme.md b/readme.md index 626764b..e91da48 100644 --- a/readme.md +++ b/readme.md @@ -58,6 +58,8 @@ Reading through its contents is encouraged for a complete understanding of what * `gulp --production`: Does the same as `gulp` except the compiled javascript and css is minified, and console logging is removed from the javascript (good for production deployments). * `gulp default watch`: Does the same as `gulp` but continues running to watch for changes to files so it can recompile updated assets and reload them in the browser using BrowserSync (good for development environments). +**NOTE**: If `gulp` isn't installed globally or its version is less than `4`, you should use the version included in `node_modules` by running `"$(npm bin)/gulp"` in place of the `gulp` command. + ### BrowserSync BrowserSync is used to keep the browser in sync with your code when running the `watch` task with gulp.