Level 3
take a look at this http://laravel.com/docs/5.0/elixir#extensions
Anyone knows if elixir can be used inside a gulp task, for example:
gulp.task('backendVersion', function () {
elixir(function(mix) {
mix.version([
'css/backend/app.css',
'js/backend/app.js'
]);
});
});
I tried to do it, task runs but nothing happens.
Please or to participate in this conversation.