I have migrated from tsd to typings. And am in the process of converting my gulpfile.js to gulpfile.ts. Hence I would like to use type definitions for such things as 'gulp-rename', 'gulp-uglify' etc.
In the case of 'gulp-uglify' it appears that the type definition exists:
https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/gulp-uglify/gulp-uglify.d.ts
And if I run the command typings search gulp-uglify I get the following response:
NAME SOURCE HOMEPAGE DESCRIPTION VERSIONS UPDATED
gulp-uglify dt https://github.com/terinjokes/gulp-uglify 1 2016-03-16T15:55:26.000Z
My question is how do I install this type definition? I have tried variations of the following:
typings install gulp-uglify --save
typings install gh~gulp-uglify --save
typings install dt~gulp-uglify --save
typings install github~gulp-uglify --save
No luck. Getting variations of 'Unable to find "gulp-uglify" ("npm") in the registry'
Any ideas what I am doing wrong?