From 262a7f6eea52ff22568b77f651c26cf30cd0e383 Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders Date: Thu, 8 Sep 2016 08:21:14 -0700 Subject: [PATCH] Use undefined, not null, to satisfy linter --- Gulpfile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gulpfile.ts b/Gulpfile.ts index 0f4b0e0c1ac..bff83fcbff6 100644 --- a/Gulpfile.ts +++ b/Gulpfile.ts @@ -729,7 +729,7 @@ gulp.task("browserify", "Runs browserify on run.js to produce a file suitable fo sourcemaps: { "built/local/_stream_0.js": originalMap, "built/local/bundle.js": maps, - "node_modules/source-map-support/source-map-support.js": null, + "node_modules/source-map-support/source-map-support.js": undefined, } }); const finalMap = chain.apply();