OK, I think I got it now:
elixir(function(mix) {
// mix.phpUnit();
mix.less('app.less').styles([
'jquery.validate.css',
'app.css'
], 'public/css/_all.css', 'public/css');
mix.coffee().scripts([
'jquery.validate.js',
'app.js',
'utils.js'
], 'public/js/_all.js', 'public/js')
mix.version([
'public/css/_all.css',
'public/js/_all.js'
]);
});
.. I guess I was calling version wrongly, it requires an array to be passed with both JS and CSS files? (rather that two separate calls)
hmm, I have the opposite problem, my app.css file is getting compiled, but I have an error, nothing written to the manifest file, and I dont know why.
Why in your case do you understand why you were getting the error?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community