Reviewed-on: #12 Reviewed-by: xtul <mpiasecki720@protonmail.com> Co-authored-by: vickydotbat <vickydotbat@tutamail.com> Co-committed-by: vickydotbat <vickydotbat@tutamail.com>
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
#!/usr/bin/env node
|
|
// ponytail: 30-line structural guard, not a render test. Catches drift, not pixels.
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const dir = path.join(__dirname, '..', 'templates', 'emails');
|
|
const files = fs.readdirSync(dir).filter((f) => f.endsWith('.tpl'));
|
|
|
|
const failures = [];
|
|
if (!files.length) {
|
|
failures.push('templates/emails: no email templates found');
|
|
}
|
|
for (const f of files) {
|
|
const src = fs.readFileSync(path.join(dir, f), 'utf8');
|
|
const trimmed = src.trim();
|
|
const checks = [
|
|
[
|
|
trimmed.startsWith('<!-- IMPORT emails/partials/header.tpl -->'),
|
|
'header IMPORT must be first',
|
|
],
|
|
[
|
|
trimmed.endsWith('<!-- IMPORT emails/partials/footer.tpl -->'),
|
|
'footer IMPORT must be last',
|
|
],
|
|
[/<!-- preheader -->/, 'missing preheader marker'],
|
|
];
|
|
for (const [check, msg] of checks) {
|
|
if (check instanceof RegExp ? !check.test(src) : !check) failures.push(`${f}: ${msg}`);
|
|
}
|
|
}
|
|
|
|
if (failures.length) {
|
|
console.error('Email template check FAILED:\n' + failures.join('\n'));
|
|
process.exit(1);
|
|
}
|
|
|
|
console.log(`Email template check passed (${files.length} templates).`);
|