I'm having trouble generating my bundle files. Everything was running smoothly until I attempted to update to gulp4, and now that I've reverted back to gulp3, the files are not appearing in my dist
directory. Gulp successfully created the files in the build
and temp
directories but not in the bundle
or App
directories. Is there a way to log the status of the task
at the end of the createBundleTask
function? Or perhaps there's a better method to troubleshoot this?
The task is failing to build the bundle files.
var task = gulp.src(entryPoint)
.pipe(gulp_jspm({
selfExecutingBundle: true
}),true)
.pipe(rename(packageId + ".bundle.js"))
.pipe(gulp.dest(paths.dist + "/bundle"));
Gulp File:
// Gulp file contents here...