Fiddle with exports again

This commit is contained in:
Ben Edgington
2025-02-19 10:14:56 +00:00
parent 3e0446c46d
commit 022f2e708a

View File

@@ -71,7 +71,7 @@ function runCheck(
}
// Set `exitToShell` to false to continue processing after running checks (e.g. while building)
const runChecks = (reporter = customReporter, exitToShell = true) => {
export const runChecks = (reporter = customReporter, exitToShell = true) => {
var allOk = true
@@ -172,5 +172,3 @@ const runChecks = (reporter = customReporter, exitToShell = true) => {
process.exit(allOk ? 0 : 2)
}
}
export default runChecks