Bram z
Bram z

Reputation: 725

Can Webpack replace Gulp?

So I am transitioning to Webpack from Gulp. Can I still watch for changes and for instance minify images e.g. in app/images/**/*.{svg,etc}?

Upvotes: 6

Views: 5270

Answers (2)

wuxiandiejia
wuxiandiejia

Reputation: 861

You can use webpack with gulp https://webpack.js.org/guides/integrations/#gulp

Upvotes: 1

Andy Ray
Andy Ray

Reputation: 32066

Yes. If you're using Webpack, there is no reason to manage any assets with Gulp. Suggested reading: Webpack, when to use and why.

Upvotes: 8

Related Questions