Useref wrapper ingredient for Laravel Elixir.
npm install laravel-elixir-userefPersonally I have some real problems with the scriptsIn() and the stylesIn() functions. Blindly combining files in an unspecified order is just asking for trouble:
* You might be including files you didn’t intend — I’m thinking a jquery.scroller.js and a jquery.scroller.min.js
* Files might be included in the wrong order — your app.js is loaded first before jquery.js and everything breaks
You need these files compiled in the same way they are loaded in your development environment.
Read my article on the subject: Laravel Elixir - Dev or Build Tasks
``bash`
$ npm install --save laravel-elixir-useref
And add it to your Elixir-enhanced Gulpfile, like so:
`javascript
var elixir = require('laravel-elixir');
require('laravel-elixir-useref');
elixir(function(mix) {
mix.useref();
});
`
Then you just have to edit your php file(s) and some extra markup, like this:
`html`
This will scan your asset dependencies in your app.blade.php, concat and minimise those files and put them in your public directory as css/all.css and js/all.js (you can change the name in the tag if you like).
This tool is really powerful if you use laravel-elixir-wiredep to inject your assets in:
@if ( Config::get('app.debug') )
@else
@endif
Note: It will not replace the assets in your app.blade.php - you should check if you are in production / debug mode and output your compiled assets or your source assets:
@if ( Config::get('app.debug') )
@else
@endif
Instead, if you only want to scan more all your .php files, you may do:
`javascript`
mix.useref({src: false })
These are the default wrapper options:
`javascript`
{
baseDir: 'resources/views', // the folder for your views
src: 'app.blade.php', // file to search, false to scan
searchLevel: '*/.php' //How many search levels you want
}
:`javascript
var elixir = require('laravel-elixir');
require('laravel-elixir-useref');elixir(function(mix) {
mix.wiredep().useref({src: 'master.blade.php'}, { searchPath: 'public' });
});
``