first commit

This commit is contained in:
2025-09-23 07:35:11 +00:00
commit a5dd3f1335
110 changed files with 46108 additions and 0 deletions

5
npm-silent.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
# 临时脚本用于运行npm命令而不显示--init.module警告
# 通过重定向stderr来过滤警告信息
npm "$@" 2>&1 | grep -v "Unknown global config" | grep -v "init.module"