From 6771c3c74c64a2a28bfdd05a8185f671c0447c06 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Tue, 24 Feb 2015 17:53:31 -0500 Subject: [PATCH] added deprecation notice to ./nodebb watch --- nodebb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/nodebb b/nodebb index e9922f8007..2f4f38a4be 100755 --- a/nodebb +++ b/nodebb @@ -110,9 +110,10 @@ case "$1" in ;; watch) - echo "Launching NodeBB in \"development\" mode." - echo "To run the production build of NodeBB, please use \"forever\"." - echo "More Information: https://docs.nodebb.org/en/latest/running/index.html" + echo "***************************************************************************" + echo "WARNING: ./nodebb watch will be deprecated soon. Please use grunt: " + echo "https://docs.nodebb.org/en/latest/running/index.html#grunt-development" + echo "***************************************************************************" NODE_ENV=development supervisor -q --ignore public/templates,public/nodebb.min.js,public/nodebb.min.js.map --extensions 'node|js|tpl|less' -- app "$@" ;;