TenantAtlas/apps/platform/.pnpm-store/v10/files/92/d848b4454027d7351ef62ee4753e0ea055028739ebaf1bcf002788be65ef6775865951e3e8dcdb948fc9adbea4856f57efea09e833e37181949aa881781a13
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

47 lines
1.0 KiB
Plaintext

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
/** @typedef {import("./Resolver").ResolveContext} ResolveContext */
/**
* @param {ResolveContext} options options for inner context
* @param {null | string} message message to log
* @returns {ResolveContext} inner context
*/
module.exports = function createInnerContext(options, message) {
let messageReported = false;
let innerLog;
if (options.log) {
if (message) {
/**
* @param {string} msg message
*/
innerLog = (msg) => {
if (!messageReported) {
/** @type {((str: string) => void)} */
(options.log)(message);
messageReported = true;
}
/** @type {((str: string) => void)} */
(options.log)(` ${msg}`);
};
} else {
innerLog = options.log;
}
}
return {
log: innerLog,
yield: options.yield,
fileDependencies: options.fileDependencies,
contextDependencies: options.contextDependencies,
missingDependencies: options.missingDependencies,
stack: options.stack,
};
};