diff --git a/.bowerrc b/.bowerrc new file mode 100644 index 00000000..4ca81ce2 --- /dev/null +++ b/.bowerrc @@ -0,0 +1,6 @@ +{ + "directory": "vendor/bower_components", + "scripts": { + "postinstall": "gulp publish" + } +} \ No newline at end of file diff --git a/bower.json b/bower.json new file mode 100644 index 00000000..dd208323 --- /dev/null +++ b/bower.json @@ -0,0 +1,6 @@ +{ + "name": "Laravel Framework", + "dependencies": { + "bootstrap-sass-official": "~3.3.1" + } +} \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js index 8b294f36..672c6f07 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -12,6 +12,7 @@ var elixir = require('laravel-elixir'); */ elixir(function(mix) { - mix.sass("bootstrap.scss") - .phpUnit(); -}); + mix.sass("bootstrap.scss") + .phpUnit() + .publish("vendor/bower_components"); +}); \ No newline at end of file