blob: 139eeaf19d7b1f5dddaf9d5fb6a3c8c45e214d9f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
import * as unified from 'unified';
import type { Plugin } from './types';
async function importPlugin(p: string | unified.Plugin): Promise<unified.Plugin> {
if (typeof p === 'string') {
const importResult = await import(p);
return importResult.default;
}
return p;
}
export function loadPlugins(items: Plugin[]): Promise<[unified.Plugin, any?]>[] {
return items.map((p) => {
return new Promise((resolve, reject) => {
if (Array.isArray(p)) {
const [plugin, opts] = p;
return importPlugin(plugin)
.then((m) => resolve([m, opts]))
.catch((e) => reject(e));
}
return importPlugin(p)
.then((m) => resolve([m]))
.catch((e) => reject(e));
});
});
}
|