From 933b322e703a3c73297f783d770746954d4ba43e Mon Sep 17 00:00:00 2001 From: Lukas Taegert-Atkinson Date: Thu, 2 May 2019 18:44:54 +0200 Subject: [PATCH] Also mention code and map in the generateBundle hook documentation (#2832) --- docs/05-plugins.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/05-plugins.md b/docs/05-plugins.md index 9fbf1f28b17..c94dd895529 100644 --- a/docs/05-plugins.md +++ b/docs/05-plugins.md @@ -112,6 +112,7 @@ Called at the end of `bundle.generate()` or immediately before the files are wri // ChunkInfo { + code: string, dynamicImports: string[], exports: string[], facadeModuleId: string | null, @@ -119,6 +120,7 @@ Called at the end of `bundle.generate()` or immediately before the files are wri imports: string[], isDynamicEntry: boolean, isEntry: boolean, + map: SourceMap | null, modules: { [id: string]: { renderedExports: string[],