Open heruan opened 11 years ago
+1
Doesn't look hard to do actually here's the instructions http://bower.io/#defining-a-package
I'm planning a new release next week to fix a minor bug and do some small improvements and will include this change
This would indeed be nice to have.
another vote for bower support, to anyone looking for an intermediate solution you can already use this repo with bower:
{
// ...
"dependencies": {
// ...
"crossroads.js": "millermedeiros/crossroads.js#v0.12.0"
}
}
Additionally, this needs a 'main' section like this to work with wiredep:
"main": "dist/crossroads.js"
and a
"dependencies": {
"js-signals": "1.0.0"
}
:+1:
This is needed.
+1
It could look like this:
bower.json
{
"name": "crossroads",
"main": [
"dist/crossroads.js"
],
"ignore": [
"**/.*",
"_assets",
"dev",
"dist"
],
"dependencies": {
"js-signals": ">=1.0.0"
}
}
I notice there is no bower.json file on this project, it would be useful to add one to install Crossroads and its dependency (Signals) automatically with bower!