We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2496a50 commit 9ad71bbCopy full SHA for 9ad71bb
1 file changed
src/Umbraco.Web.UI.Client/gulpfile.js
@@ -23,6 +23,15 @@ const { views } = require('./gulp/tasks/views');
23
const { watch } = require('./gulp/tasks/watch');
24
25
26
+// Load local overwrites, can be used to overwrite paths in your local setup.
27
+var fs = require('fs');
28
+var onlyScripts = require('./gulp/util/scriptFilter');
29
+var overwrites = fs.readdirSync('./gulp/overwrites/').filter(onlyScripts);
30
+overwrites.forEach(function(overwrite) {
31
+ require('./gulp/overwrites/' + overwrite);
32
+});
33
+
34
35
// ***********************************************************
36
// These Exports are the new way of defining Tasks in Gulp 4.x
37
0 commit comments