From 02639a6a22574505d24dc934251305959da95b15 Mon Sep 17 00:00:00 2001 From: Dean Johnson Date: Mon, 24 Nov 2014 15:00:35 -0800 Subject: [PATCH] Fixed js module binary paths for docs. --- docs/hacking_howto.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/hacking_howto.rst b/docs/hacking_howto.rst index 15c6ee8efd2..ad1c294bf1d 100644 --- a/docs/hacking_howto.rst +++ b/docs/hacking_howto.rst @@ -237,7 +237,10 @@ Start with this:: } LESS_PREPROCESS = True - LESS_BIN = '/path/to/kitsune/node_modules/less/bin/lessc' + LESS_BIN = path('node_modules/.bin/lessc') + UGLIFY_BIN = path('node_modules/.bin/uglifyjs') + CLEANCSS_BIN = path('node_modules/.bin/cleancss') + NUNJUCKS_PRECOMPILE_BIN = path('node_modules/.bin/nunjucks-precompile') # Tells django-axes we aren't behind a reverse proxy. AXES_BEHIND_REVERSE_PROXY = False