你看腻了吗?:
[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"
以上是厌倦了 punycode 弃用消息?的详细内容。更多信息请关注PHP中文网其他相关文章!