Skip to content

Commit f9102d0

Browse files
committed
Update comment to reflect new dependency
1 parent 4b5f7e5 commit f9102d0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Gulpfile.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ import * as insert from "gulp-insert";
2020
import * as sourcemaps from "gulp-sourcemaps";
2121
import Q = require("q");
2222
declare global {
23-
// This is silly. We include Q because orchestrator (a part of gulp) depends on it, but its not included.
24-
// `del` further depends on `Promise` (and is also not included), so we just, patch the global scope's Promise to Q's
23+
// `del` further depends on `Promise` (and is also not included), so we just, patch the global scope's Promise to Q's (which we already include in our deps because gulp depends on it)
2524
type Promise<T> = Q.Promise<T>;
2625
}
2726
import del = require("del");

0 commit comments

Comments
 (0)