Update generators for HTML and Marko

This commit is contained in:
Keraito 2018-05-09 15:37:48 +02:00
parent c47c5fc9ba
commit 8d9fbb7c9e
3 changed files with 6 additions and 4 deletions

View File

@ -165,12 +165,12 @@ const runGenerator = () => {
.then(end);
case types.MARKO:
return markoGenerator()
return markoGenerator(npmOptions)
.then(commandLog('Adding storybook support to your "Marko" app'))
.then(end);
case types.HTML:
return htmlGenerator()
return htmlGenerator(npmOptions)
.then(commandLog('Adding storybook support to your "HTML" app'))
.then(end);

View File

@ -3,8 +3,9 @@ import path from 'path';
import npmInit from '../../lib/npm_init';
import { getVersions, getPackageJson, writePackageJson } from '../../lib/helpers';
export default async () => {
export default async npmOptions => {
const [storybookVersion, babelCoreVersion, babelRuntimeVersion] = await getVersions(
npmOptions,
'@storybook/html',
'babel-core',
'babel-runtime'

View File

@ -2,8 +2,9 @@ import path from 'path';
import mergeDirs from 'merge-dirs';
import { getVersions, getPackageJson, writePackageJson } from '../../lib/helpers';
export default async () => {
export default async npmOptions => {
const [storybookVersion, babelCoreVersion, babelRuntimeVersion] = await getVersions(
npmOptions,
'@storybook/marko',
'babel-core',
'babel-runtime'