astro-ghostcms/.pnpm-store/v3/files/81/5d0062c600c441f79675cfda74f...

11 lines
153 B
Plaintext

const tasks = arr => arr.join(' && ')
module.exports = {
'hooks': {
'pre-commit': tasks([
"npm run lint",
"npm run test"
])
}
}