Почему pu sh для развертывания приложения Rails через Heroku использует старую версию Node (v8.10.0- linux -x64)? - PullRequest
0 голосов
/ 11 марта 2020

При попытке развернуть приложение Rails через Heroku "git pu sh heroku master" на моей машине с Ubuntu 16.04 я получаю следующую ошибку:

[2/4] Fetching packages...
remote:          error @rails/webpacker@4.2.2: The engine "node" is incompatible with this module. Expected version ">=8.16.0".
remote:        error An unexpected error occurred: "Found incompatible module".
remote:        info If you think this is a bug, please open a bug report with the information provided in "/tmp/build_c472d4366cfa53133fe29a2426a45a7b/yarn-error.log".
remote:        info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
remote:
remote:  !
remote:  !     Precompiling assets failed.
remote:  !
remote:  !     Push rejected, failed to compile Ruby app.
remote:
remote:  !     Push failed

Это мой пакет. json файл (в папке root):

{
  "name": "site",
  "private": true,
  "dependencies": {
    "@rails/webpacker": "4.2.2",
    "flatpickr": "^4.6.3",
    "jquery": "^3.3.1",
    "node": "^12.x",
    "node-sass": "^4.13.1",
    "reading-time": "^1.2.0",
    "simple-lightbox": "^2.1.0"
  },
  "devDependencies": {
    "@babel/plugin-syntax-dynamic-import": "^7.8.3",
    "webpack-cli": "^3.3.11",
    "webpack-dev-server": "^3.10.3"
  }
}

узел - версия:

v13.10.1

узел запуска герока - версия:

Running node --version on ⬢ -site... up, run.4229 (Hobby)
v12.16.1

Я подозреваю, что это может быть связано с проблемой в моем диспетчере пакетов Yarn, но не могу решить ее.

Ответы [ 2 ]

2 голосов
/ 11 марта 2020

https://devcenter.heroku.com/articles/deploying-nodejs

Вы можете указать версию узла в Heroku через ваш package.json

{
  "name": "node-example",
  "version": "1.0.0",
  "description": "This example is so cool.",
  "main": "web.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [
    "example",
    "heroku"
  ],
  "author": "jane-doe",
  "license": "MIT",
  "dependencies": {
    "express": "^4.9.8"
  },
  "engines": {
    "node": "10.x"
  }
}

Вы можете найти поддерживаемые версии узлов здесь: https://devcenter.heroku.com/articles/nodejs-support

0 голосов
/ 11 марта 2020

Не знаю точно, что это, но проблема как-то связана с пакетом Heroku, который я использовал (heroku-buildpack-bundler2)

Вот что я сделал, чтобы решить эту проблему:

$ heroku buildpacks:set heroku/ruby
$ heroku buildpacks:add --index 1 heroku/nodejs

$ git push heroku master

Теперь все отлично работает: -)

...