From 1f23d2237292bc562f16a3453864c52619bacdd5 Mon Sep 17 00:00:00 2001 From: Andreas Fernandez <a.fernandez@scripting-base.de> Date: Fri, 24 Jan 2020 16:39:01 +0100 Subject: [PATCH] [TASK] Utilize grunt-newer to build only changed files The grunt module `grunt-newer` is introduced to act with changed files only instead of copying or minifying all files all the time. Used command: yarn add --dev grunt-newer Resolves: #90200 Releases: master Change-Id: Idcf34b402f089757a5b5209398abec1bba3288a2 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/63031 Tested-by: TYPO3com <noreply@typo3.com> Tested-by: Susanne Moog <look@susi.dev> Tested-by: Daniel Goerz <daniel.goerz@posteo.de> Reviewed-by: Susanne Moog <look@susi.dev> Reviewed-by: Daniel Goerz <daniel.goerz@posteo.de> --- Build/Gruntfile.js | 10 ++++++++-- Build/package.json | 1 + Build/yarn.lock | 10 +++++++++- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/Build/Gruntfile.js b/Build/Gruntfile.js index 1007845afb12..25e69d104922 100644 --- a/Build/Gruntfile.js +++ b/Build/Gruntfile.js @@ -398,6 +398,11 @@ module.exports = function (grunt) { ] } }, + newer: { + options: { + cache: './.cache/grunt-newer/' + } + }, npmcopy: { options: { clean: false, @@ -578,6 +583,7 @@ module.exports = function (grunt) { grunt.loadNpmTasks('grunt-stylelint'); grunt.loadNpmTasks('grunt-lintspaces'); grunt.loadNpmTasks('grunt-contrib-imagemin'); + grunt.loadNpmTasks('grunt-newer'); /** * grunt default task @@ -621,7 +627,7 @@ module.exports = function (grunt) { * - sass * - postcss */ - grunt.registerTask('css', ['formatsass', 'sass', 'postcss']); + grunt.registerTask('css', ['newer:formatsass', 'newer:sass', 'newer:postcss']); /** * grunt update task @@ -655,7 +661,7 @@ module.exports = function (grunt) { * - 2) Copy all generated JavaScript files to public folders * - 3) Minify build */ - grunt.registerTask('scripts', ['compile-typescript', 'copy:ts_files', 'terser:typescript']); + grunt.registerTask('scripts', ['compile-typescript', 'newer:copy:ts_files', 'newer:terser:typescript']); /** * grunt clear-build task diff --git a/Build/package.json b/Build/package.json index 2363dc510113..86cd7db08443 100644 --- a/Build/package.json +++ b/Build/package.json @@ -50,6 +50,7 @@ "grunt-eslint": "^22.0.0", "grunt-exec": "^3.0.0", "grunt-lintspaces": "^0.8.6", + "grunt-newer": "^1.3.0", "grunt-npm-install": "^0.3.1", "grunt-npmcopy": "^0.2.0", "grunt-postcss": "^0.9.0", diff --git a/Build/yarn.lock b/Build/yarn.lock index df2144e26796..72a53c7d037b 100644 --- a/Build/yarn.lock +++ b/Build/yarn.lock @@ -623,7 +623,7 @@ async-limiter@~1.0.0: resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg== -async@1.x, async@^1.4.0, async@~1.5.2: +async@1.x, async@^1.4.0, async@^1.5.2, async@~1.5.2: version "1.5.2" resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= @@ -4011,6 +4011,14 @@ grunt-lintspaces@^0.8.6: junitwriter "^0.4.1" lintspaces "^0.6.4" +grunt-newer@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/grunt-newer/-/grunt-newer-1.3.0.tgz#83ccb7a1dda7cbd8ab23b059024ebe614ad2f342" + integrity sha1-g8y3od2ny9irI7BZAk6+YUrS80I= + dependencies: + async "^1.5.2" + rimraf "^2.5.2" + grunt-npm-install@^0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/grunt-npm-install/-/grunt-npm-install-0.3.1.tgz#916170595e370e2078e1dfb04224331db1de8437" -- GitLab