Description
Version
3.3.0
Environment info
System:
OS: Linux 4.4 Ubuntu 18.04.1 LTS (Bionic Beaver)
CPU: (4) x64 Intel(R) Xeon(R) CPU E3-1240 v5 @ 3.50GHz
Binaries:
Node: 10.15.0 - ~/.nvm/versions/node/v10.15.0/bin/node
Yarn: Not Found
npm: 6.4.1 - ~/.nvm/versions/node/v10.15.0/bin/npm
Browsers:
Chrome: Not Found
Firefox: Not Found
npmPackages:
vue: 2.5.22
npmGlobalPackages:
@vue/cli: 3.3.0
IMPORTANT NOTE: Ubuntu 18.04 runs on WSL (Windows 10 Education, 1809)
Steps to reproduce
vue-cli-service build
What is expected?
"vue-cli-service build" will terminate. Either with a successful build or some sort of error.
What is actually happening?
On some WSL installations, the Vue CLI 3 build in production mode hangs and never terminates (message "Building for production...").
I observed this behavior with a mid-sized Vue project (~ 150 .vue files) on a 4 and 14 core machine. Strangely the project was building just fine on a machine with 8 cores. (Same Windows, WSL, Ubuntu, Node and Vue (CLI) version)
Because "serve" and "build --mode development" were working on all machines, I finally stumbled upon the following discussion in the forum:
https://forum.vuejs.org/t/vue-cli-3-pages-npn-run-build-gets-stuck/41566/3
And yes, deleting the "named-chunks" plugin was also working in my situation:
webpackChainconfig.plugins.delete('named-chunks');
The whole investigation brought up some questions:
- I couldn't find much information for debugging webpack via Vue CLI. Why is there no easy way of passing --verbose to webpack?
- When building with "named-chunks"-plugin, multiple node processes get spawned. This happens even when "parallel" (https://cli.vuejs.org/config/#parallel) is set to false. Shouldn't also the "named-chunks"-plugin, respectively all modules used by Vue CLI, respect the parallel-option?
- Are there any known shortcomings when using webpack in WSL? Would you advise against such a build environment on Windows?
Unfortunately, I cannot share the code of the project. But I have an affected system/project ready for further investigation.