We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e42733 commit 4b5f7e5Copy full SHA for 4b5f7e5
1 file changed
Gulpfile.ts
@@ -1,6 +1,4 @@
1
/// <reference path="scripts/types/ambient.d.ts" />
2
-/// <reference types="q" />
3
-
4
import * as cp from "child_process";
5
import * as path from "path";
6
import * as fs from "fs";
@@ -20,6 +18,7 @@ declare module "gulp-typescript" {
20
18
}
21
19
import * as insert from "gulp-insert";
22
import * as sourcemaps from "gulp-sourcemaps";
+import Q = require("q");
23
declare global {
24
// This is silly. We include Q because orchestrator (a part of gulp) depends on it, but its not included.
25
// `del` further depends on `Promise` (and is also not included), so we just, patch the global scope's Promise to Q's
0 commit comments