@intlayer/chokidar
Version:
Uses chokidar to scan and build Intlayer declaration files into dictionaries based on Intlayer configuration.
58 lines • 2.02 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var runOnce_exports = {};
__export(runOnce_exports, {
runOnce: () => runOnce
});
module.exports = __toCommonJS(runOnce_exports);
var import_promises = require("fs/promises");
var import_path = require("path");
const runOnce = async (sentinelFilePath, callback, cacheTimeoutMs = 60 * 1e3) => {
const currentTimestamp = Date.now();
const timeoutDuration = cacheTimeoutMs;
try {
const sentinelStats = await (0, import_promises.stat)(sentinelFilePath);
const sentinelAge = currentTimestamp - sentinelStats.mtime.getTime();
if (sentinelAge > timeoutDuration) {
await (0, import_promises.unlink)(sentinelFilePath);
} else {
return;
}
} catch (err) {
if (err.code === "ENOENT") {
} else {
throw err;
}
}
try {
await (0, import_promises.mkdir)((0, import_path.dirname)(sentinelFilePath), { recursive: true });
await (0, import_promises.writeFile)(sentinelFilePath, String(currentTimestamp), { flag: "wx" });
} catch (err) {
if (err.code === "EEXIST") {
return;
}
throw err;
}
await callback();
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
runOnce
});
//# sourceMappingURL=runOnce.cjs.map