add versioning

This commit is contained in:
overdodactyl 2018-10-13 20:01:52 -06:00
parent f13f4b6f84
commit 457f7ecd42
1 changed files with 3 additions and 3 deletions

View File

@ -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');
});