// import path from "path" // async function _loadProjectVariablesFile( // folderAbsolutePath: string, // globPattern: string, // fileExtension: string // ) { // const globPattern = path.join(folderAbsolutePath, `${fileName}.{}`) // const filePaths = await fastGlob(globPattern, { dot: true }) // filePaths.forEach(path => { // const fileContent = fs.readFileSync(path, 'utf-8') // const jsonContent = YAML.parse(fileContent) // _variablesFileContent = deepmerge(_variablesFileContent, jsonContent) // }) // }