diff options
author | Teddy Wing | 2017-02-03 19:55:24 +0100 |
---|---|---|
committer | Teddy Wing | 2017-02-03 19:55:24 +0100 |
commit | c388e6dacb539400cd7725429cd123eb4e6a7c79 (patch) | |
tree | 44b89378f513b7f8e3bb1561954754352388cde7 | |
parent | 0c4c9d3d1e91529c4bb9b4b410293f3c38756e6a (diff) | |
download | Angular-tutorial-c388e6dacb539400cd7725429cd123eb4e6a7c79.tar.bz2 |
Install Bower
Configure it to work with Rails in the /vendor directory.
-rw-r--r-- | .bowerrc | 3 | ||||
-rw-r--r-- | bower.json | 10 |
2 files changed, 13 insertions, 0 deletions
diff --git a/.bowerrc b/.bowerrc new file mode 100644 index 0000000..91e7bff --- /dev/null +++ b/.bowerrc @@ -0,0 +1,3 @@ +{ + "directory": "vendor/assets/components" +}
\ No newline at end of file diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..f886f6c --- /dev/null +++ b/bower.json @@ -0,0 +1,10 @@ +{ + "name": "notes_app", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ] +} |