在 Rails 上将 Tailwind 安装到 Ruby 6 |引擎 "node" 与该模块不兼容

Installing Tailwind to Ruby on Rails 6 | The engine "node" is incompatible with this module

安装 Tailwind-CSS 时,我 运行 这个命令

yarn add tailwindcss@npm:@tailwindcss/postcss7-compat postcss@^7 autoprefixer@^9

我收到此错误消息,告诉我将节点更新为兼容版本。

**error** tailwindcss@2.1.2: The engine "node" is incompatible with this module. Expected version ">=12.13.0". Got "10.24.1"

那么如何正确更新节点呢? 我在 Rails 6

上使用 Ruby

更新

当我更新节点时,我运行进入了后续问题。这是我运行更新节点

nvm install 12.22.1

现在,当我尝试安装 Tailwind-CSS 时,我收到了不同的错误消息。

Command 'yarn' not found

然后我 运行 nvm 使用 10.24.1 我回到原点。

当你通过 yarn 安装时,追加

--ignore-engines 

所以完整的安装命令是

yarn add tailwindcss@npm:@tailwindcss/postcss7-compat postcss@^7 autoprefixer@^9 --ignore-engines

我不知道为什么会这样,但确实如此