为啥“npm run watch”崩溃了
Posted
技术标签:
【中文标题】为啥“npm run watch”崩溃了【英文标题】:Why 'npm run watch' crashed为什么“npm run watch”崩溃了 【发布时间】:2021-12-08 06:15:52 【问题描述】:我正在尝试在我的控制台中运行“npm run watch”。但我正在接受这个错误。
No task specified. Will go through all possible tasks
[test] [nodemon] 2.0.14
[test] "Error: no test specified"
[test] [nodemon] app crashed - waiting for file changes before starting...
这是我的 package.json 文件。
"name": "blogg",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"directories":
"test": "tests"
,
"watch":
"test": "src,test/*.js"
,
"scripts":
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm-watch"
,
"author": "",
"license": "ISC"
你知道这个错误吗?
【问题讨论】:
您在脚本下留下了错误的“测试”。没有指定测试,因为您没有指定测试命令。试试"test": "tape test/*.js" "watch": "test": "tape test/*.js" ,像这样吗?我再次遇到同样的错误。 不,"scripts": "test": "tape test/*.js", "watch": "npm-watch"
【参考方案1】:
如果 npm-watch 使用测试脚本,则需要测试脚本。
"scripts":
"test": "tape test/*.js",
"watch": "npm-watch"
【讨论】:
我照你说的做了。这是我的下一个错误:没有指定任务。将完成所有可能的任务。我是新手,我不知道该怎么做 我希望this 对您有所帮助。但如果这与您之前的问题无关,请标记为已接受并打开一个新帖子。以上是关于为啥“npm run watch”崩溃了的主要内容,如果未能解决你的问题,请参考以下文章
Laravel 中的 npm run watch 和 npm run hot 有啥区别?
node npm run watch退出状态3221225725