cleanup console logs (changed actual proper logs to .info())

This commit is contained in:
Henry Jameson 2025-12-19 19:13:24 +02:00
commit c71a36de30
9 changed files with 6 additions and 12 deletions

View file

@ -29,9 +29,9 @@ const copyPlugin = ({ inUrl, inFs }) => {
order: 'post',
sequential: true,
async handler () {
console.log(`Copying '${inFs}' to ${copyTarget}...`)
console.info(`Copying '${inFs}' to ${copyTarget}...`)
await cp(inFs, copyTarget, { recursive: true })
console.log('Done.')
console.info('Done.')
}
}
}]

View file

@ -178,7 +178,7 @@ export const buildSwPlugin = ({
order: 'post',
sequential: true,
async handler () {
console.log('Building service worker for production')
console.info('Building service worker for production')
await build(config)
}
}