From 2b36abd87f0f2d4c574663b6ff58ff195bcb2996 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 11 Jan 2023 13:45:56 +0100 Subject: [PATCH] Bug 32609: Remove JS vars from gulpfile They are not used. --- gulpfile.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index a17b66effe6..da998c332d8 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -22,17 +22,13 @@ const Vinyl = require('vinyl'); const args = require('minimist')(process.argv.slice(2)); const rename = require('gulp-rename'); -const STAFF_JS_BASE = "koha-tmpl/intranet-tmpl/prog/js"; const STAFF_CSS_BASE = "koha-tmpl/intranet-tmpl/prog/css"; -const OPAC_JS_BASE = "koha-tmpl/opac-tmpl/bootstrap/js"; const OPAC_CSS_BASE = "koha-tmpl/opac-tmpl/bootstrap/css"; if (args.view == "opac") { var css_base = OPAC_CSS_BASE; - var js_base = OPAC_JS_BASE; } else { var css_base = STAFF_CSS_BASE; - var js_base = STAFF_JS_BASE; } var sassOptions = { -- 2.25.1