From 5383d91b60a6414d3ad4d8c6e630d6e74a177b97 Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders Date: Thu, 23 Jun 2016 12:49:20 -0700 Subject: [PATCH] Fix case of gulpfile dependencies --- Gulpfile.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gulpfile.ts b/Gulpfile.ts index ddc0dce8552..d88e8bd0664 100644 --- a/Gulpfile.ts +++ b/Gulpfile.ts @@ -1,4 +1,5 @@ /// +/// import * as cp from "child_process"; import * as path from "path"; @@ -25,7 +26,7 @@ declare global { type Promise = Q.Promise; } import del = require("del"); -import mkdirP = require("mkdirP"); +import mkdirP = require("mkdirp"); import minimist = require("minimist"); import browserify = require("browserify"); import through2 = require("through2");