Skip to content

Commit

Permalink
Fix semver
Browse files Browse the repository at this point in the history
Addresses #873, ENORESTARGET when installing on bower by correcting the semver reference to Angluar.

According to https://semver.npmjs.com/, an inclusive range of stable releases is indicated with a hyphen, not using `&&`. This change should allow the library to be installed by bower.
  • Loading branch information
TablesawTablesawsen authored Jul 18, 2016
1 parent 1fe0db0 commit 8cdf65a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"main": "dist/satellizer.js",
"homepage": "https://github.com/sahat/satellizer",
"dependencies": {
"angular": ">=1.3.x && <= 1.5.x"
"angular": "1.3.x - 1.5.x"
}
}

0 comments on commit 8cdf65a

Please sign in to comment.