I keep encountering an issue when attempting to download the three.js file with a specified version in my bower.json file.
"dependencies": {
"three.js":"~0.0.69"
}
Error: Unable to locate versions in git://github.com/jiyinyiyong/three.js.git
As a workaround, I am currently downloading the entire repository by specifying the URL like so:
"dependencies": {
"three.js":"https://github.com/mrdoob/three.js.git"
}
This method is proving to be time-consuming and taking up unnecessary space. Is there a way to only download the specific file from the Git repo?