Add args during build (#607)

This commit is contained in:
Max Isom 2022-03-26 17:51:34 -04:00 committed by GitHub
parent 297228692c
commit 986b055e11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 21 additions and 1 deletions

View file

@ -10,6 +10,7 @@ const logBanner = () => {
githubSponsor: 'codetheweb',
madeByPrefix: 'Made with 🎶 by ',
buildDate: process.env.BUILD_DATE ? new Date(process.env.BUILD_DATE) : undefined,
commit: process.env.COMMIT_HASH ?? 'unknown',
}).join('\n'));
console.log('\n');
};