S
S
Stepan2014-09-04 15:13:47
JavaScript
Stepan, 2014-09-04 15:13:47

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'             //Формат на выходе
}]

That's how it is for me. But still doesn't work

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Dmitry Chernysh, 2014-09-04
@Dmitrich

Try like this:

files: [{
                    expand: true,       
                    cwd: 'html',  //каталог, где лежат исходные файлы
                    src: '**/*.jade',  //расширения файлов исходников
                    dest: './',  // куда положить файлы. Выход из папки html "./" - правильно
                    ext: '.html'  //расширение файлов на выходе
}]

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question