Browse Source

Add Bower

Jeffrey Way 10 years ago
parent
commit
31798823c1
3 changed files with 16 additions and 3 deletions
  1. 6 0
      .bowerrc
  2. 6 0
      bower.json
  3. 4 3
      gulpfile.js

+ 6 - 0
.bowerrc

@@ -0,0 +1,6 @@
+{
+  "directory": "vendor/bower_components",
+  "scripts": {
+	"postinstall": "gulp publish"
+  }
+}

+ 6 - 0
bower.json

@@ -0,0 +1,6 @@
+{
+  "name": "Laravel Framework",
+  "dependencies": {
+	"bootstrap-sass-official": "~3.3.1"
+  }
+}

+ 4 - 3
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");
+});