chore: hide generated logs

This commit is contained in:
Pooya Parsa 2021-01-20 15:37:21 +01:00
parent 0675191cba
commit cc4a32c024

View File

@ -44,11 +44,13 @@ export function tryImport (dir: string, path: string) {
} catch (_err) { } } catch (_err) { }
} }
export async function writeFile (file, contents) { export async function writeFile (file, contents, log = false) {
await fse.mkdirp(dirname(file)) await fse.mkdirp(dirname(file))
await fse.writeFile(file, contents, 'utf-8') await fse.writeFile(file, contents, 'utf-8')
if (log) {
consola.info('Generated', prettyPath(file)) consola.info('Generated', prettyPath(file))
} }
}
export function resolvePath (sigmaContext: SigmaInput, path: string | ((sigmaContext) => string), resolveBase: string = ''): string { export function resolvePath (sigmaContext: SigmaInput, path: string | ((sigmaContext) => string), resolveBase: string = ''): string {
if (typeof path === 'function') { if (typeof path === 'function') {