我想开始使用Elixir + Gulp。在我的项目中,我只使用CSS + JS。
今天,我使用它:我有一个dashboard.blade.php,我包含在所有文件中。
然后,根据页面的不同,每个lib都有一个条件包含:
@if (Request::is("tournaments") || Request::is("invites"))
{!! Html::script('js/plugins/tables/footable/footable.min.js') !!}
@endif
@if (Request::is("tournaments/create"))
{!! Html::script('js/plugins/forms/inputs/duallistbox.min.js') !!}
{!! Html::script('js/plugins/pickers/pickadate/picker.js') !!}
{!! Html::script('js/plugins/pickers/pickadate/picker.date.js') !!}
@endif
....
我想要的是使用elixir,并在elixir方面做这些事情,所以我可以简化我的dashboard.blade.php并且总是只有2个包含:app.css和app.js
我只是不知道最好的方法是什么。
有什么想法吗?
EDIT1:
在我的gulp.js中,我定义了所有页面共有的常用样式:
mix.styles([
'icons/icomoon/styles.css',
'bootstrap.css',
'components.css',
'colors.css'
],'public / css / app.css');
然后,在我的网页中,我将其包括在内:
{!! Html::style('css/app.css')!!}
我可以用chrome打开文件,所以链接似乎没问题。
但是,当我打开我的网站时,一切都出错了,我在Chrome控制台中:
Uncaught SyntaxError: Unexpected token <
jquery.min.js:1 Uncaught SyntaxError: Unexpected token <
bootstrap.min.js:1 Uncaught SyntaxError: Unexpected token <
blockui.min.js:1 Uncaught SyntaxError: Unexpected token <
app.js:1 Uncaught SyntaxError: Unexpected token <
pnotify.min.js:1 Uncaught SyntaxError: Unexpected token <
switch.min.js:1 Uncaught SyntaxError: Unexpected token <
(index):1 Failed to decode downloaded font: http://laravel.dev/css/fonts/icomoon.woff?3p0rtw
(index):1 OTS parsing error: invalid version tag
(index):1 Failed to decode downloaded font: http://laravel.dev/css/fonts/icomoon.ttf?3p0rtw
(index):1 OTS parsing error: invalid version tag
我做错了什么???
答案 0 :(得分:3)
在gulpfile.js
中,您可以创建一个大型脚本,如:
/**
* Tournaments create package
*/
mix.scripts([
'forms/inputs/dualistbox.min.js',
'pickers/pickadate/picker.js',
'pickers/pickadate/picker.date.js'
// ↑ these are the files you are wanting to merge
], 'js/directory/where/you/want/script/saved/tournamentCreate.js', 'js/plugins');
// ↑ this is directory you want the merged file to be in ↑ this is the directory to look in for the scripts above
/**
* Version control (might use, might not...I do)
*/
mix.version([
'js/directory/from/above/tournamentCreate.js'
]);
现在您有一个包含脚本的合并脚本,您可以使用elixir
将其拉入。请注意,您需要在控制台中运行gulp
来创建文件。
在你的tournementcreate.blade.php
中@section('scripts')
<script src="{{ elixir('js/directory/from/above/tournamentCreate.js') }}"></script>
@endsection
您可以根据自己的喜好创建。您只需使用相同布局的新mix.scripts()
即可。希望一切都有意义!