From 457f7ecd42e5084fa309a97243cd87390558f03e Mon Sep 17 00:00:00 2001 From: overdodactyl Date: Sat, 13 Oct 2018 20:01:52 -0600 Subject: [PATCH] add versioning --- gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 3b232d6..3fc0d8e 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -89,14 +89,14 @@ gulp.task('push', function() { gulp.task('patch', () => { - return exec_ch('npx ver patch -p css/common-files/color_variables.css'); + return exec_ch('npx ver patch -p css/common-files/color_variables.css userChrome.css userContent.css alternative_user_files/userContent_no_addons.css'); }); gulp.task('minor', () => { - return exec_ch('npx ver minor -p css/common-files/color_variables.css'); + return exec_ch('npx ver minor -p css/common-files/color_variables.css userChrome.css userContent.css alternative_user_files/userContent_no_addons.css'); }); gulp.task('major', () => { - return exec_ch('npx ver major -p css/common-files/color_variables.css'); + return exec_ch('npx ver major -p css/common-files/color_variables.css userChrome.css userContent.css alternative_user_files/userContent_no_addons.css'); });