From b35ddd5e74b593d5c2a667ef7dabd973b4f4e758 Mon Sep 17 00:00:00 2001 From: Colin Devroe Date: Mon, 23 Nov 2020 14:40:26 -0500 Subject: [PATCH] Updated production grunt. Versioned to 2020.4 --- Gruntfile.js | 4 ++-- application/config/config.php | 2 +- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 43584f50..bfd26123 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -152,7 +152,7 @@ module.exports = function(grunt) { // Default task: // Compiles CSS, compresses JavaScript. - grunt.registerTask('default', [ 'sass:prod', 'uglify:prod' ]); + grunt.registerTask('default', [ 'sass:prod', 'concat:dev', 'uglify:prod' ]); // Utility tasks that deletes/copies /custom/ @@ -164,7 +164,7 @@ module.exports = function(grunt) { grunt.registerTask('release', [ 'clean:releasePrepare', 'sass:prod', 'uglify:prod', 'copy:release', 'compress:dist', 'clean:releaseFinal' ]); - // Dev build task: + // Dev custom build task: // Does not compress files, easier to debug grunt.registerTask('dev', [ 'sass:prod', 'concat:dev', 'concat:custom' ]); diff --git a/application/config/config.php b/application/config/config.php index 698fa066..24b31d7b 100644 --- a/application/config/config.php +++ b/application/config/config.php @@ -11,7 +11,7 @@ | version.point.release | */ -$config['unmark_version'] = '2020.3'; +$config['unmark_version'] = '2020.4'; /* |-------------------------------------------------------------------------- diff --git a/package.json b/package.json index fc8942a5..50d257ce 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "unmark", "url": "https://unmark.it", - "version": "2020.3.0", + "version": "2020.4.0", "repository": "https://github.com/cdevroe/unmark", "license": "https://github.com/cdevroe/unmark/blob/master/license.txt", "description": "The open source to-do application for bookmarks.",