Skip to content

Commit

Permalink
moved dependencies from bower to npm
Browse files Browse the repository at this point in the history
allows us to use david to maintain dependencies
  • Loading branch information
joshuahiggins committed Mar 22, 2015
1 parent 177fef1 commit 6bc1d60
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 0 additions & 5 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,5 @@
"sungard",
"sungard-labs"
],
"dependencies": {
"angular": ">=1.2.26 <1.4",
"packery": ">=1.2.0 <1.3",
"draggabilly": ">=1.1.0 <1.2"
},
"license": "MIT"
}
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
"sungard",
"sungard-labs"
],
"dependencies": {
"angular": ">=1.2.26 <1.4",
"packery": ">=1.2.0 <1.3",
"draggabilly": ">=1.1.0 <1.2"
},
"devDependencies": {
"bower": "~1.3",
"grunt": "~0.4.5",
Expand Down

2 comments on commit 6bc1d60

@ddoolin
Copy link
Contributor

@ddoolin ddoolin commented on 6bc1d60 May 1, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How can I use this with Bower now? It no longer knows to install the dependencies if they're not found in the bower.json.

@joshuahiggins
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yea, this was brought up internally as well. Dependencies need to be maintained in both the Bower and NPM files.

Please sign in to comment.