mirror of
https://github.com/jlengrand/check-html-links-netlify-plugin.git
synced 2026-03-10 08:11:17 +00:00
9 lines
213 B
JavaScript
9 lines
213 B
JavaScript
module.exports = {
|
|
onPostBuild: ({inputs}) => {
|
|
console.log('Hello world from onPreBuild event!')
|
|
console.log(inputs.docfolder)
|
|
|
|
const cli = new CheckHtmlLinksCli();
|
|
cli.run();
|
|
},
|
|
} |