|
|
|
|
|
by hhandoko
3219 days ago
|
|
I looked into Vue + Webpack vs Vue + Brunch on my last project. I ended up with Brunch because the requirements are fairly basic and Brunch are easier to grok. Had the requirements be a little bit more complex, I could have easily gone for Webpack. IMO, there are a few key things lacking with the Vue + Brunch combo: - The `vue-brunch` plugin seems to be no longer in active development? (https://github.com/theocodes/vue-brunch) - The `sass-loader` plugin allows me to use Sass dialect in SFC-style Vue (Single File Component). I'm using plain CSS with Vue + Brunch SFC as I cannot find a Brunch plugin offering similar functionality. - There are some Brunch idiosyncracies. For one, the processing pipeline is executed as per `package.json` (dev)Dependencies ordering. I spent quite a bit of time before figuring this out. |
|