auto-git:
[change] main.js
This commit is contained in:
13
main.js
13
main.js
@@ -630,19 +630,6 @@ function enqueueTask(folderPath, fn) {
|
|||||||
monitoringQueues.get(folderPath).push(fn);
|
monitoringQueues.get(folderPath).push(fn);
|
||||||
processQueue(folderPath);
|
processQueue(folderPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
async function processQueue(folderPath) {
|
|
||||||
if (monitoringActive.get(folderPath)) return;
|
|
||||||
monitoringActive.set(folderPath, true);
|
|
||||||
|
|
||||||
const queue = monitoringQueues.get(folderPath) || [];
|
|
||||||
while (queue.length > 0) {
|
|
||||||
const task = queue.shift();
|
|
||||||
try { await task(); } catch (e) { console.error(e); }
|
|
||||||
}
|
|
||||||
monitoringActive.set(folderPath, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
function ensureInGitignore(folderPath, name) {
|
function ensureInGitignore(folderPath, name) {
|
||||||
const gitignorePath = path.join(folderPath, '.gitignore');
|
const gitignorePath = path.join(folderPath, '.gitignore');
|
||||||
let lines = [];
|
let lines = [];
|
||||||
|
|||||||
Reference in New Issue
Block a user