Skip to content

Commit

Permalink
Fix: Remove paths from build.min.js (fixes #3461)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverfoster authored Sep 13, 2023
1 parent 42cbe3d commit 7efe7fb
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion grunt/tasks/build-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,14 @@ module.exports = function(grunt) {
});

// remove path specific variables
const hideAttributes = ['outputdir', 'sourcedir', 'root'];
const hideAttributes = [
'cachepath',
'configdir',
'outputdir',
'root',
'sourcedir',
'tempdir'
];
hideAttributes.forEach(function(attrName) {
delete buildConfig[attrName];
});
Expand Down

0 comments on commit 7efe7fb

Please sign in to comment.