From fecfe3bc96bedb901ca34acfe0551fc0c4381b6f Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Tue, 17 Sep 2024 14:44:49 +0300 Subject: [PATCH] cleanup transpiled dir before build --- Gruntfile.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Gruntfile.js b/Gruntfile.js index c0da4740c8..601ae1a812 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -122,6 +122,9 @@ module.exports = grunt => { }, clean: { + tanspiled: [ + 'client/lib/transpiled/**', + ], start: [ 'build/EspoCRM-*', 'client/lib/*', @@ -502,6 +505,7 @@ module.exports = grunt => { 'less', 'cssmin', 'prepare-lib-original', + 'clean:tanspiled', 'transpile', 'bundle', 'bundle-templates',