gpt4 book ai didi

javascript - 在 npm run build 之前检查 jshint 错误

转载 作者:行者123 更新时间:2023-12-02 21:18:02 25 4
gpt4 key购买 nike

我已经使用 npm 设置了 webpack。我使用 npm install jshint --save-dev 安装了 jshint。

现在,如果我运行命令 jshint assets/js/index.js 我会收到错误。

我想检查 npm run build 上的错误

最佳答案

您可以通过运行 lint 的方式更改 package.json 中的构建脚本,如果成功则运行构建。查看示例

{
...
"scripts": {
"build": "npm run lint && your_build_command",
"lint": "jshint assets/js/index.js"
}
...
}

关于javascript - 在 npm run build 之前检查 jshint 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60916925/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com