Add trailing slashes to paths in Gulpfile

This commit is contained in:
Nick Krichevsky 2018-06-28 18:41:52 -04:00
parent b90ac682fb
commit b25d4288fc

View file

@ -22,8 +22,8 @@ const TS_ENTRYPOINTS = ["browser-action.ts"];
const JS_OUT_DIR = "spectabular/js/"; const JS_OUT_DIR = "spectabular/js/";
const SASS_SRC_DIR = "src/scss/"; const SASS_SRC_DIR = "src/scss/";
const CSS_OUT_DIR = "spectabular/css/"; const CSS_OUT_DIR = "spectabular/css/";
const TWIG_SRC_DIR = "src/twig"; const TWIG_SRC_DIR = "src/twig/";
const TWIG_OUT_DIR = "spectabular/twig"; const TWIG_OUT_DIR = "spectabular/twig/";
let isProdBuild = yargs.argv.hasOwnProperty("prod"); let isProdBuild = yargs.argv.hasOwnProperty("prod");