Commit b225276a authored by Jeffrey Way's avatar Jeffrey Way

Use explicit Bower publishing

parent b73e127e
{
"directory": "vendor/bower_components",
"scripts": {
"postinstall": "gulp publish"
}
"directory": "vendor/bower_components"
}
......@@ -12,7 +12,14 @@ var elixir = require('laravel-elixir');
*/
elixir(function(mix) {
mix.sass("app.scss")
mix.sass('app.scss')
.phpUnit()
.publish("vendor/bower_components");
.publish(
'jquery/dist/jquery.min.js',
'public/js/vendor/jquery.js'
)
.publish(
'bootstrap-sass-official/assets/javascripts/bootstrap.js',
'public/js/vendor/bootstrap.js'
);
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment