我目前正在处理项目中的twig文件,但我仍然想使用jade语法。我还使用Laravel Elixir编译jade文件。问题是编译jade文件时,它只在Laravel中编译成文件 .blade.php 。那么无论如何我可以从jade生成 .twig 文件?我正在使用名为 laravel-elixir-jade 的npm包。 这是我的Gulpfile.js
elixir(mix => {
mix
.sass(''+sassPath+'*.*', ''+cssPath+'style.css' )
.scripts(''+jsPath+'*.*', ''+jsCopyPath+'main.js')
.jade({
search: '*.jade',
src: '/resources/jade/'
})
.browserSync({
files: [
''+cssPath+'**/*', // Watch css files for changes
''+jsPath+'**/*', // Watch js files for changes
''+twigPath+'**/*' // Watch twig files for changes
],
proxy: 'http://dev.myproject.com'
});
});