无论如何从jade到twig文件编译?

时间:2016-10-14 04:34:04

标签: php laravel gulp twig pug

我目前正在处理项目中的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'
            });
});

1 个答案:

答案 0 :(得分:1)

您可以查看this。但我认为将玉和树枝放在一起是不必要的复杂。