你看腻了吗?:
[DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead. at node:punycode:3:9 at BuiltinModule.compileForInternalLoader (node:internal/bootstrap/realm:399:7) at BuiltinModule.compileForPublicLoader (node:internal/bootstrap/realm:338:10) at loadBuiltinModule (node:internal/modules/helpers:96:7) at Module._load (node:internal/modules/cjs/loader:1070:17) at TracingChannel.traceSync ...
将 package.json 中的启动或开发脚本更改为前缀:
NODE_NO_WARNINGS=1
例如,
如果你以前有过
"start": "vite"
改为
"start": "NODE_NO_WARNINGS=1 vite"
现在您可以享受控制台输出,减少 80,000 行的溢出。
如果您有动力并且有时间,尝试通过以下任一方式帮助解决包裹问题是有益的:
用户层模块在这里:https://github.com/mathiasbynens/punycode.js
并且您可以使用此工具扫描所有依赖项是否存在违规(因此您不必依赖运行时来查找每次发生的情况):punycode- detector
npx punycode-detector
或者
pnpm dlx punycode-detector
这也适用于其他工具
例如,
如果你以前有过
"start": "ember serve"
改为
"start": "NODE_NO_WARNINGS=1 ember serve"
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3