Explore the history of angular-ui-router d.ts file using the commit hash
Within my tsd.json file, I have the following details:
{
"version": "v4",
"repo": "borisyankov/DefinitelyTyped",
"ref": "master",
"path": "typings",
"bundle": "typings/tsd.d.ts",
"installed": {
"jquery/jquery.d.ts": {
"commit": "93bae1bb4c887c1375a4c1f0c3bb849ff06b8ac6"
},
"angularjs/angular.d.ts": {
"commit": "93bae1bb4c887c1375a4c1f0c3bb849ff06b8ac6"
},
"angularjs/angular-route.d.ts": {
"commit": "6a6ad7068a177c0d7a8a20830626cb63277191c5"
},
"angularjs/angular-animate.d.ts": {
"commit": "6a6ad7068a177c0d7a8a20830626cb63277191c5"
},
"angularjs/angular-sanitize.d.ts": {
"commit": "6a6ad7068a177c0d7a8a20830626cb63277191c5"
},
"angularjs/angular-resource.d.ts": {
"commit": "1984ea435fe9e93a012d50db7773db58ae5d494b"
},
"angularjs/angular-mocks.d.ts": {
"commit": "d1f6bde13f2209be42e86c3686761e8bfcbb50a5"
},
"angular-ui-router/angular-ui-router.d.ts": {
"commit": "93bae1bb4c887c1375a4c1f0c3bb849ff06b8ac6"
}
}
}
Can someone explain how the commit hash functions? I attempted to view the angular-ui-router type definition file with the specified commit hash like this.. https://github.com/DefinitelyTyped/DefinitelyTyped/commit/93bae1bb4c887c1375a4c1f0c3bb849ff06b8ac6, but it did not directly lead me to the angular-ui-router definition file. Please refer to the image in history for clarification.
Would I receive the same commit version every time I perform a tsd install? If I wish to upgrade to a newer version, do I simply run tsd update angular-ui-router?
Apologies for these inquiries as I have extensively searched without finding a clear answer. Thank you,