Я пытаюсь развернуть свое приложение на Heroku и использую пакет node-rf c.
node-rf c уже установлен в моем пакете. json зависимости.
{
"name": "testDep",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js"
},
"engines": {
"node": "10.x"
},
"dependencies": {
"node-rfc": "^1.0.3"
},
"keywords": [],
"author": "",
"license": "ISC"
}
для этого пакета node-rf c требуются библиотеки SAP NW RF C SDK.
Что, по-моему, приводит к сбою git push heroku master
в сборке.
Как заставить приложение nodeJS искать SDK в папке node_modules?