Added plan.md with complete architecture for format-agnostic content generation: - Support for Markdown, HTML, Plain Text, JSON formats - New FormatExporter module with neutral data structure - Integration strategy with existing ContentAssembly and ArticleStorage - Bonus features: SEO metadata generation, readability scoring, WordPress Gutenberg format - Implementation roadmap with 4 phases (6h total estimated) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
415 B
JavaScript
13 lines
415 B
JavaScript
import test from 'node:test';
|
|
import assert from 'node:assert';
|
|
import { requireEnv, DEFAULT_REQUIRED } from '../_helpers/env.js';
|
|
|
|
test('ENV: required variables present (soft)', () => {
|
|
const res = requireEnv(DEFAULT_REQUIRED);
|
|
if (!res.ok) {
|
|
// soft fail: on avertit mais on n'arrête pas
|
|
console.warn('[ENV WARN] Missing env:', res.missing);
|
|
}
|
|
assert.ok(true, 'Soft check done');
|
|
});
|