From 9e451ccce2522db2d8496c99d66482215a11cfa3 Mon Sep 17 00:00:00 2001 From: Felix Kling Date: Tue, 20 Oct 2015 15:57:06 -0700 Subject: [PATCH] Fix composition handling The composition handler was not added to the default handlers, which means that the generated documentation didn't contain any information about the composed modules. --- src/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.js b/src/main.js index a61eec6660d..db748843438 100644 --- a/src/main.js +++ b/src/main.js @@ -18,6 +18,7 @@ import * as utils from './utils'; var defaultResolver = resolver.findExportedComponentDefinition; var defaultHandlers = [ handlers.propTypeHandler, + handlers.propTypeCompositionHandler, handlers.propDocBlockHandler, handlers.defaultPropsHandler, handlers.componentDocblockHandler,