Skip to content

Commit 4515ca7

Browse files
committed
bower
1 parent 9ea6099 commit 4515ca7

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# Extracted from https://github.com/ulrich/macaron-factory/blob/master/.gitignore
22
# Ignore all dotfiles...
33
.*
4-
# except for .gitignore
4+
# except for .gitignore and .bowerrc
55
!.gitignore
6+
!.bowerrc
7+
8+
react-js/src/bower_components
69

710
# Ignore Play! working directory #
811
db

react-js/.bowerrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "src/bower_components"
3+
}

react-js/bower.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "birdwatch",
3+
"version": "0.2.0",
4+
"homepage": "https://github.com/matthiasn/BirdWatch",
5+
"authors": [
6+
"Matthias Nehlsen <matthias.nehlsen@gmail.com>"
7+
],
8+
"description": "tweet analysis in the browser",
9+
"license": "Apache 2.0",
10+
"private": true,
11+
"ignore": [
12+
"**/.*",
13+
"node_modules",
14+
"bower_components",
15+
"app/bower_components",
16+
"test",
17+
"tests"
18+
],
19+
"dependencies": {
20+
"regression-js": "*",
21+
"react": "~0.10.0"
22+
}
23+
}

0 commit comments

Comments
 (0)