tj / consolidate.js

Template engine consolidation library for node.js
3.48k stars 357 forks source link

Handle multiple views folder for dustjs partials #337

Closed Syno0 closed 2 years ago

Syno0 commented 3 years ago

Hello,

we are in a situation where we have .dust file in two different location. So we set on express 2 different views folder like this: app.set('views', [folder1, folder2]);

But Dustjs is not enable to check correctly in both folder with partials ( {>myFile.dust} ) The array of folder is stringify and dust js throw an error.

The objectif is to handle the case that there is multiple views folder and manage to find the file correctly.

Btw if the file is in both directory I added a warning and the first file found is used by default.