From 3c02bc73f802c857797af9480417cfb974aa6dca Mon Sep 17 00:00:00 2001 From: Kurt Preston Date: Mon, 29 Jan 2018 14:06:10 -0600 Subject: [PATCH] [gulp-nodemon] Adding args, nodeArgs, scriptPosition to Options (#23096) --- types/gulp-nodemon/gulp-nodemon-tests.ts | 2 ++ types/gulp-nodemon/index.d.ts | 3 +++ 2 files changed, 5 insertions(+) diff --git a/types/gulp-nodemon/gulp-nodemon-tests.ts b/types/gulp-nodemon/gulp-nodemon-tests.ts index 364536f778..4c36b42aa9 100644 --- a/types/gulp-nodemon/gulp-nodemon-tests.ts +++ b/types/gulp-nodemon/gulp-nodemon-tests.ts @@ -29,6 +29,8 @@ nodemon({ }); return tasks } + , nodeArgs: ['--trace-warnings'] + , args: ['-t'] }); diff --git a/types/gulp-nodemon/index.d.ts b/types/gulp-nodemon/index.d.ts index 7c5491f596..de08560463 100644 --- a/types/gulp-nodemon/index.d.ts +++ b/types/gulp-nodemon/index.d.ts @@ -69,6 +69,9 @@ declare namespace nodemon { execMap?: { [key: string]: string | boolean | number; }; events?: { [key: string]: string; }; restartable?: string; + args?: string[]; + nodeArgs?: string[]; + scriptPosition?: number; } interface EventEmitter extends NodeJS.EventEmitter {