From 88e15e649d4ec2825dcbc0df278146d09583ad38 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Tue, 26 Feb 2019 21:53:58 +0100 Subject: [PATCH] Added path config for sprockets Signed-off-by: Jim Martens --- _assets/gulp_config/paths.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/_assets/gulp_config/paths.js b/_assets/gulp_config/paths.js index 8e0244b..a14643c 100644 --- a/_assets/gulp_config/paths.js +++ b/_assets/gulp_config/paths.js @@ -62,4 +62,11 @@ paths.jekyllImageFilesGlob = paths.jekyllImageFiles + paths.imagePattern; // Site files globs paths.siteHtmlFilesGlob = paths.siteDir + paths.htmlPattern; -module.exports = paths; \ No newline at end of file +paths.sprocketsDirs = { + app: paths.assetsDir, + javascripts: [], + stylesheets: [], + images: [] +}; + +module.exports = paths;