1 Star 0 Fork 49

TheGirlNextDoor/frontend-vue3

forked from DEV-Edu/frontend-vue3 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
deletelocakFile.js 610 Bytes
一键复制 编辑 原始数据 按行查看 历史
bangbangji 提交于 2024-02-23 15:30 . fix: 删除了package-lock.json
const fs = require('fs');
const path = require('path');
const FILE_NAME = 'package-lock.json';
function deleteLockFile(dir) {
const filename = path.join(dir, FILE_NAME);
if (fs.existsSync(filename)) {
fs.rmSync(filename);
console.log('deleted: ', filename);
}
const subs = fs.readdirSync(dir);
for (const sub of subs) {
if (sub.startsWith('.')) continue;
const subPath = path.join(dir, sub);
if (isDirectory(subPath)) {
deleteLockFile(subPath);
}
}
}
function isDirectory(p) {
return fs.lstatSync(p).isDirectory();
}
deleteLockFile(__dirname);
console.log('ok');
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ShyHack/frontend-vue3.git
git@gitee.com:ShyHack/frontend-vue3.git
ShyHack
frontend-vue3
frontend-vue3
main

搜索帮助