angular-truncate
angular-truncate copied to clipboard
bower.json can only include the package with the "*" wildcard
Currently, the library can only be specified in a bower.json package using the * wildcard instead of a specific version. As indicated on the following article, in order for bower to detect the package version, a git tag is required.
Could you add a version tag?
# tag the commit
git tag -a v0.1.2 -m "Release version 0.1.2"
# push to GitHub
git push origin master --tags```
@rebelliard I've created a maintained for of this project. Maybe you can use this one to solve your problems: https://github.com/BernardoSilva/angular-truncate
Hope it helps.