chore: 整理 third-party Dark Reader 目录并移除本地说明文件跟踪

This commit is contained in:
2026-08-08 17:38:08 +08:00
parent 202ab537d1
commit 0bb552b026
1004 changed files with 115066 additions and 20081 deletions
+84
View File
@@ -0,0 +1,84 @@
import {log} from './utils.js';
import watch from './watch.js';
/** @typedef {import('./types').TaskOptions} TaskOptions */
class Task {
/**
* @param {string} name
* @param {(options: TaskOptions) => void | Promise<void>} run
*/
constructor(name, run) {
this.name = name;
this._run = run;
}
/**
* @param {string[] | (() => string[])} files
* @param {(changedFiles: string[], watcher: import('chokidar').FSWatcher, platforms: object) => void | Promise<void>} onChange
*/
addWatcher(files, onChange) {
this._watchFiles = files;
this._onChange = onChange;
return this;
}
/**
* @param {() => void | Promise<void>} fn
*/
async _measureTime(fn) {
const start = Date.now();
await fn();
const end = Date.now();
log(`${this.name} (${(end - start).toFixed(0)}ms)`);
}
/**
* @param {TaskOptions} options
*/
async run(options) {
await this._measureTime(
() => this._run(options)
);
}
watch(platforms) {
if (!this._watchFiles || !this._onChange) {
return;
}
const watcher = watch({
files: typeof this._watchFiles === 'function' ?
this._watchFiles() :
this._watchFiles,
onChange: async (files) => {
await this._measureTime(
() => this._onChange(files, watcher, platforms)
);
},
});
}
}
/**
* @param {string} name
* @param {(options: TaskOptions) => void | Promise<any>} run
*/
export function createTask(name, run) {
return new Task(name, run);
}
/**
* @param {Task[]} tasks
* @param {TaskOptions} options
*/
export async function runTasks(tasks, options) {
for (const task of tasks) {
try {
await task.run(options);
} catch (err) {
log.error(`${task.name} error\n${err.stack || err}`);
throw err;
}
}
}