Categories
property ImportMapHooks.generate:done

Runs after the map is generated and emitted.

Examples

Example 1

const onDone = (ctx) => console.log('mapped', Object.keys(ctx.map.imports).length, 'imports');

Type

(context: HookContext & { readonly map: ImportMapDocument; }) => void | Promise<void>