Skip to content
Advertisement

Trouble with splitting gulpfile.js into multiple files in Gulp 4

I am a beginner to Javascript and Gulp. Am learning this based on a udemy course in which Gulp 3 is being used, and I’ve been looking at docs to convert the code to Gulp 4. It’s been fun so far since I am learning more when I am doing the conversions myself, but am stuck on this one. Wonder if you guys can offer some advice.

Issue: When I split the gulpfile.js into separate files to organise my files better, it starts throwing errors. Code below.

styles.js

JavaScript

watch.js

JavaScript

gulpfile.js

JavaScript

When I run “gulp watch”, this is what I get.

error

JavaScript

I found another post with almost identical code, but with a different error – which happened to be one of the errors i was getting earlier as well, and have followed the solution mentioned in that post – and that’s when I get this error. Here’s the link to the post.

Any help is much appreciated. Thanks for your time.

Advertisement

Answer

Answering my own question feels wierd, but I found the solution after playing with it for couple of days. See below.

I needed to import styles into watch.js, and not gulpfile.js. That was my first mistake. To do this, I added the below line to watch.js

JavaScript

Then my gulpfile.js only needed two lines

gulpfile.js

JavaScript

I also removed the variable gulp, instead created variables for src and dest. So, the rest of the code looked like below.

styles.js

JavaScript

watch.js

JavaScript

Hence resolved! hope this helps someone else.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement