cb() никогда не вызывалась в приложении Nextjs, развернутом в службе приложений Azure.
У меня есть приложение Nextjs, которое при развертывании в новом приложении службы приложений Azure, которое я сделал (это означает, что это новое чистое приложение в azure), дает сбой из-за ошибки npm cb() not found, пока Oryx создает его:
Running 'npm install --unsafe-perm'...
npm WARN read-shrinkwrap This version of npm is compatible with lockfileVersion@1, but package-lock.json was generated for lockfileVersion@2. I'll try to do my best with it!
npm ERR! cb() never called!
npm ERR! This is an error with npm itself. Please report this error at:
npm ERR! <https://npm.community>
npm ERR! A complete log of this run can be found in:
npm ERR! /home/.npm/_logs/2022-06-25T02_43_13_219Z-debug.log
\nnpm WARN read-shrinkwrap This version of npm is compatible with lockfileVersion@1, but package-lock.json was generated for lockfileVersion@2. I'll try to do my best with it!\nnpm ERR! cb() never called!\n\nnpm ERR! This is an error with npm itself. Please report this error at:\nnpm ERR! <https://npm.community>\n\nnpm ERR! A complete log of this run can be found in:\nnpm ERR! /home/.npm/_logs/2022-06-25T02_43_13_219Z-debug.log\n/bin/bash -c "oryx build /tmp/zipdeploy/extracted -o /home/site/wwwroot --platform nodejs --platform-version 14 -i /tmp/8da56524cd01d4f -p compress_node_modules=tar-gz --log-file /tmp/build-debug.log | tee /tmp/oryx-build.log ; exit $PIPESTATUS "
Generating summary of Oryx build
Parsing the build logs
Found 0 issue(s)
Build Summary :
===============
Errors (0)
Warnings (0)
Deployment Failed.
я пробовал делатьnpm cache clean -f
иnpm cache verify
в ssh моего приложения Azure, но это не сработало. Я также попытался удалить свой package-lock.json из zip-файла, отправляемого в приложение Azure, чтобы избежать этой ошибки, но это только увеличивает время установки npm и время ожидания Oryx. Я также хотел бы отметить, что это происходит только в моем приложении Azure. Локально я попытался удалить модули узлов и выполнить установку npm, чтобы увидеть, не вызовет ли это ту же ошибку cb(), которую никогда не вызывали, но это не так. Также вот мой package.json:
{
"name": "my-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "npx jest"
},
"dependencies": {
"@azure/logger": "^1.0.3",
"@azure/search-documents": "^11.2.1",
"@emotion/css": "^11.9.0",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.6.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@hookform/resolvers": "^2.8.5",
"@material-ui/core": "^4.12.3",
"@mui/material": "^5.3.1",
"@next-auth/firebase-adapter": "^0.1.3",
"@popperjs/core": "^2.10.1",
"@ramonak/react-progress-bar": "^3.2.1",
"@reduxjs/toolkit": "^1.6.1",
"@slate-editor/color-plugin": "^5.1.0",
"@slate-editor/font-family-plugin": "^5.1.0",
"@slate-editor/font-size-plugin": "^5.1.0",
"@slate-editor/list-plugin": "^5.1.0",
"@svgr/webpack": "^6.2.1",
"@types/react-color": "^3.0.6",
"@types/react-fontawesome": "^1.6.5",
"@types/react-modal": "^3.12.1",
"@types/styled-components": "^5.1.24",
"acorn-globals": "^6.0.0",
"antd": "^4.10.3",
"axios": "^0.21.1",
"bootstrap": "^5.1.3",
"classnames": "^2.3.1",
"dotenv": "^10.0.0",
"firebase": "^9.8.1",
"firebase-admin": "^11.0.0",
"firestore": "^1.1.6",
"fs": "0.0.1-security",
"loader-utils": "^3.2.0",
"material-design-icons": "^3.0.1",
"mini-css-extract-plugin": "^1.3.9",
"mongodb": "^4.1.3",
"next": "^12.1.6",
"next-auth": "^4.3.4",
"nextjs-azure-function": "^1.0.16",
"node-sass": "^7.0.1",
"npm-force-resolutions": "0.0.10",
"pdfmake": "^0.2.5",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-awesome-reveal": "^4.0.0-beta.2",
"react-bootstrap": "^1.6.3",
"react-circular-progressbar": "^2.0.4",
"react-color": "^2.19.3",
"react-device-detect": "^2.1.2",
"react-dom": "^17.0.2",
"react-dropdown": "^1.9.2",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.24.1",
"react-icons": "^4.4.0",
"react-iframe": "^1.8.0",
"react-infinite-scroll-component": "^6.1.0",
"react-modal": "^3.14.3",
"react-redux": "^7.2.6",
"react-slick": "^0.28.1",
"react-transition-group": "^4.4.2",
"redux": "^4.1.2",
"sass": "^1.52.0",
"slate": "^0.80.0",
"slate-history": "^0.66.0",
"slate-react": "^0.80.0",
"slick-carousel": "^1.8.1",
"styled-components": "^5.3.3",
"typescript-plugin-css-modules": "^2.8.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@shelf/jest-mongodb": "^2.2.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/react": "^18.0.14",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"typescript": "^4.8.0-dev.20220521"
},
"engines": {
"node": ">=14.19.1"
}
}
В моем приложении Azure используется node.js 14.9.1 и npm версии 6.14.15. Я также не хочу обновлять свою версию npm, потому что это приводит к большому количеству конфликтов и ошибок между одноранговыми зависимостями.