Closed RuntimeRascal closed 6 years ago
Hi @simpert
Great suggestion. I'll see what I can do.
Nick.
Hi @simpert
I have added a capability that will now let you run a ts gulp file. If you do the following you should be able get your tasks to display and execute:
gulptasks
.**/gulpfile*.+(js|ts)
.--register/ts-node
to the args array.Let me know if you have any issues.
I use
typescript
and therefore my gulp files aregulpfile.ts
rather thengulpfile.js
.Gulp supports typescript out of the box. As long as
ts-node
package has been installed,gulp taskName
with loadtaskName
from thetypescript
file viats-node
by auto registering withgulp --register/ts-node
.Please support typescript files in extension. I changed the glob to use
.ts
but it doesn't work.