为什么不安装Node?

时间:2018-06-13 23:14:37

标签: node.js npm yarnpkg

我有一个非常简单的package.json

{
  ...
  "devDependencies": {
    ...
    "node": "^8.0.0",
    ...
  },
  "scripts": {
    "test": "which node"
  }
}

但是,当我运行yarn install && yarn test时,它指向我的系统版本的节点,并且node中未安装node_modules/.bin/

另一方面,使用npm node安装node_modules/.bin/并使用该版本:

> npm install && npm run test
.../node_modules/.bin/node

node安装npm的本地版本后,yarn将使用它。

如何让yarn安装node

0 个答案:

没有答案