Answer the question
In order to leave comments, you need to log in
How to set up compilation of different files into one in grunt ?
files: [{
expand: true, //Включаю
cwd: 'html/*.jade', //Указываю откуда брать файлы
src: '*html/*jade', // ??
dest: './', // Куда положить файлы. Кстати как выйти из папки html?
ext: '.html' //Формат на выходе
}]
Answer the question
In order to leave comments, you need to log in
Try like this:
files: [{
expand: true,
cwd: 'html', //каталог, где лежат исходные файлы
src: '**/*.jade', //расширения файлов исходников
dest: './', // куда положить файлы. Выход из папки html "./" - правильно
ext: '.html' //расширение файлов на выходе
}]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question