You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gulp.task('definitions', function(done) {
var exec = require('child_process').exec;
var cmd = 'node ./node_modules/dts-generator/bin/dts-generator --name myproject --baseDir src/typescript --project ./ --out typings/myproject/myproject.d.ts';
exec(cmd, function(error, stdout, stderr){
console.log(stdout);
console.log(stderr);
done();
});
});```
provided you have dts-generator as a local dependency. if you have installed it globally just use dts-generator instead of node ./...
hay guys do u have any gulp plugin or working on that or something . or their is some way to use it with gulp ??
The text was updated successfully, but these errors were encountered: