After upgrading to Visual Studio 2018 15.8.1 (pro) my Gulpfile.js fails to load.
I'm getting the following error message:
Failed to run "C:\...\Gulpfile.js"...
cmd.exe /c gulp --tasks-simple
gulp[37688]: src\node_contextify.cc:631: Assertion `args[1]->IsString()' failed.
 1: 00007FF6586E82F5 
 2: 00007FF6586C4156 
 3: 00007FF6586C4221 
 4: 00007FF65869A69A 
 5: 00007FF658CE5EB2 
 6: 00007FF658CE7008 
 7: 00007FF658CE636D 
 8: 00007FF658CE628B 
 9: 000002A6C5C041C1
Even the simplest Gulpfile.js fails to load:
var gulp = require('gulp');
gulp.task('default', function () {
    // place code for your default task here
});
 
    