We have an old ember app has bower.json
with below configuration:
{
"name": "my-app",
"dependencies": {
"Faker": "~3.1.0"
}
}
It has been working for years, recently we found the below error in building
bower install
bower Faker#~3.1.0 not-cached https://github.com/Marak/Faker.js.git#~3.1.0
bower Faker#~3.1.0 resolve https://github.com/Marak/Faker.js.git#~3.1.0
bower Faker#~3.1.0 ENORESTARGET No tag found that was able to satisfy ~3.1.0
Additional error details:
No versions found in https://github.com/Marak/Faker.js.git
I checked https://github.com/Marak/Faker.js, the error is right. There is no 3.1.0
anymore, the current version is 6.6.6
. But the git commit history cannot find 3.1.0
version anymore.
Is there a way for me to find the 3.1.0 back from somewhere? It seems the author clears the old versions?