From fded7874f86017b6deefafc5e9f42d953729e637 Mon Sep 17 00:00:00 2001 From: Pierrick PAUL Date: Wed, 23 Aug 2017 21:43:42 +0200 Subject: [PATCH] Fix generators export Correctly export `VUE` and `WEBPACK_REACT` generators --- lib/cli/generators/VUE/index.js | 2 +- lib/cli/generators/WEBPACK_REACT/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cli/generators/VUE/index.js b/lib/cli/generators/VUE/index.js index 206472a2363..5b8fb90f0b6 100644 --- a/lib/cli/generators/VUE/index.js +++ b/lib/cli/generators/VUE/index.js @@ -3,7 +3,7 @@ const helpers = require('../../lib/helpers'); const path = require('path'); const latestVersion = require('latest-version'); -Promise.all([ +module.exports = Promise.all([ latestVersion('@storybook/vue'), latestVersion('@storybook/addon-actions'), latestVersion('@storybook/addon-links'), diff --git a/lib/cli/generators/WEBPACK_REACT/index.js b/lib/cli/generators/WEBPACK_REACT/index.js index bc9be259b83..8fe1dd2e259 100644 --- a/lib/cli/generators/WEBPACK_REACT/index.js +++ b/lib/cli/generators/WEBPACK_REACT/index.js @@ -3,7 +3,7 @@ const helpers = require('../../lib/helpers'); const path = require('path'); const latestVersion = require('latest-version'); -Promise.all([ +module.exports = Promise.all([ latestVersion('@storybook/react'), latestVersion('@storybook/addon-actions'), latestVersion('@storybook/addon-links'),