mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:11:20 +08:00
Update generators for HTML and Marko
This commit is contained in:
parent
c47c5fc9ba
commit
8d9fbb7c9e
@ -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);
|
||||
|
||||
|
@ -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'
|
||||
|
@ -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'
|
||||
|
Loading…
x
Reference in New Issue
Block a user