当我用VScode运行我的项目时,我在我的终端上看到了很多警告。这样的警告示例:
The `bg-variant` mixin has been deprecated as of v4.4.0. It will be removed entirely in v5.
on line 8 of node_modules/bootstrap/scss/mixins/_deprecate.scss, in mixin `deprecate`
from line 15 of node_modules/bootstrap/scss/mixins/_background-variant.scss, in mixin `bg-variant`
from line 256 of src/styles/_utils.scss
from line 23 of stdin
我如何从VSCode终端获得这些警告到我的JS代码并处理它们?(例如,将它们记录在浏览器控制台或存储在数组中)
一种方法是运行
npm run build
运行此命令将列出运行npm run dev
时不会显示的所有警告和错误(包括eslint错误和警告)。
PS:运行npm run build
将在项目的根目录下构建.next
中的项目。如果您不需要构建文件,请确保在.gitignore
中添加文件夹。
希望这有帮助,祝你的项目好运!