我正在尝试学习 React,并且我正在使用私人回购开始。
我在 repo 的目录中运行 yarn start
但我收到错误消息:
yarn run v1.13.0
error Command "start" not found.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
我同时安装了节点和纱线。
对于节点:
v10.15.0
node is /usr/local/bin/node
对于纱线:
1.13.0
yarn is /usr/local/bin/yarn
我尝试重新安装节点和纱线,但我收到相同的错误消息。此外,我尝试通过 yarn cache clean
消除纱线机会,但似乎没有任何效果。
package.json
包含以下内容:
{
"name": "02-Manipulating-Strings",
"version": "1.0.0",
"author": "ssaunier",
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"eslint": "^4.7.2",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^21.1.0"
},
"scripts": {
"test": "(eslint lib || true) && jest"
}
}
该目录按以下方式组织:
原文由 Magofoco 发布,翻译遵循 CC BY-SA 4.0 许可协议
package.json
文件的脚本中没有start
命令。也许您想运行
test
命令代替 -npm test
/yarn test
?