9023ed3ef9
humanizer 2.2.0 -> 2.9.1 (blader/humanizer, MIT): adds a Voice Calibration section and a passive-voice pattern, reworks negative parallelisms and em dashes. Version moved to metadata.version upstream. impeccable 3.6.0 -> 4.0.4 (pbakaus/impeccable, Apache-2.0): the repo tags the skill and the npm CLI separately, so 3.6.0 was a real release and npm's 3.5.0 was never the comparison. Adds native-platform reference briefs. Each now carries an UPSTREAM file; bin/check-vendored.sh reports drift.
27 lines
656 B
JavaScript
27 lines
656 B
JavaScript
/**
|
|
* Static HTML registry entry: the terminal fallback.
|
|
*
|
|
* Hand-written pages, a multi-page site emitted by a generator, anything with
|
|
* no bundler config at the app root. `detect` always matches, so this entry
|
|
* must stay last in FRAMEWORKS. Its behavior is the plain tag strategy, which
|
|
* is what live-inject.mjs did for every unrecognized project before the
|
|
* registry existed.
|
|
*/
|
|
|
|
export const staticHtml = {
|
|
name: 'static-html',
|
|
|
|
detect() {
|
|
return { via: 'fallback' };
|
|
},
|
|
|
|
inject: { kind: 'tag' },
|
|
|
|
source: {
|
|
extensions: ['.html', '.htm'],
|
|
preview: 'source',
|
|
styleMode: 'scoped',
|
|
commentSyntax: 'html',
|
|
},
|
|
};
|