Estoy usando el empaquetador de paquetes para sass en mis proyectos, siempre he usado npm start en lugar de npm run build y siempre me ha funcionado. Pero esta vez, cuando intento implementar mi proyecto en Vercel, falla y dice "Error: el comando "npm run build" salió con 127".
[19:25:23.101] Cloning github.com/sn-tin/odin-etch-a-sketch (Branch: main, Commit: e5ff000) [19:25:23.584] Cloning completed: 482.734ms [19:25:23.676] Installing build runtime... [19:25:25.452] Build runtime installed: 1.775s [19:25:26.373] No Build Cache available [19:25:26.541] Installing dependencies... [19:25:27.829] [19:25:27.830] added 17 packages in 1s [19:25:27.830] [19:25:27.830] 2 packages are looking for funding [19:25:27.830] run `npm fund` for details [19:25:28.030] Detected `package-lock.json` generated by npm 7... [19:25:28.031] Running "npm run build" [19:25:28.305] [19:25:28.306] > odin-eas@1.0.0 build [19:25:28.306] > parcel build src/index.html [19:25:28.306] [19:25:28.322] Error: Command "npm run build" exited with 127Mi paquete.json
{ "name": "odin-eas", "version": "1.0.0", "description": "", "main": "index.js", "target": { "main": false }, "scripts": { "start": "parcel src/index.html", "build": "parcel build src/index.html" }, "keywords": [], "author": "", "license": "ISC", "devDependencies": { "@parcel/transformer-sass": "^2.5.0", "bundler": "^0.8.0", "parcel": "^2.5.0", "sass": "^1.51.0" } }