My project has only a few npm dependencies, but the build process is taking longer than 30 minutes and still counting. I'm not sure if this is normal or if there's an issue causing the delay.
I have two specific questions:
- Is it common for projects to take this long to build?
- What is the average build time for a project like mine?
Here is a snippet from my package.json file:
{
"name": "...",
"version": "0.0.1",
"author": "Ricardo Villagrana <<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="5a7474741a3d373b333674393537">[email protected]</a>>",
"description": "...",
"license": null,
"main": "./dist/electron/main.js",
// Scripts omitted for brevity
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.8",
"@fortawesome/free-solid-svg-icons": "^5.5.0",
"@fortawesome/vue-fontawesome": "^0.1.2",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"bulma": "^0.7.2",
"electron-json-storage": "^4.1.4",
// Remaining dependencies omitted for brevity
}