Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const listDeploys = async () => {
// Required
const site = 'calibre'
// List the deploys
const deploys = await Deploy.list({
site
})
// Output the formatted JSON response
console.log(JSON.stringify(deploys, null, 2))
}