mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:01:21 +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);
|
.then(end);
|
||||||
|
|
||||||
case types.MARKO:
|
case types.MARKO:
|
||||||
return markoGenerator()
|
return markoGenerator(npmOptions)
|
||||||
.then(commandLog('Adding storybook support to your "Marko" app'))
|
.then(commandLog('Adding storybook support to your "Marko" app'))
|
||||||
.then(end);
|
.then(end);
|
||||||
|
|
||||||
case types.HTML:
|
case types.HTML:
|
||||||
return htmlGenerator()
|
return htmlGenerator(npmOptions)
|
||||||
.then(commandLog('Adding storybook support to your "HTML" app'))
|
.then(commandLog('Adding storybook support to your "HTML" app'))
|
||||||
.then(end);
|
.then(end);
|
||||||
|
|
||||||
|
@ -3,8 +3,9 @@ import path from 'path';
|
|||||||
import npmInit from '../../lib/npm_init';
|
import npmInit from '../../lib/npm_init';
|
||||||
import { getVersions, getPackageJson, writePackageJson } from '../../lib/helpers';
|
import { getVersions, getPackageJson, writePackageJson } from '../../lib/helpers';
|
||||||
|
|
||||||
export default async () => {
|
export default async npmOptions => {
|
||||||
const [storybookVersion, babelCoreVersion, babelRuntimeVersion] = await getVersions(
|
const [storybookVersion, babelCoreVersion, babelRuntimeVersion] = await getVersions(
|
||||||
|
npmOptions,
|
||||||
'@storybook/html',
|
'@storybook/html',
|
||||||
'babel-core',
|
'babel-core',
|
||||||
'babel-runtime'
|
'babel-runtime'
|
||||||
|
@ -2,8 +2,9 @@ import path from 'path';
|
|||||||
import mergeDirs from 'merge-dirs';
|
import mergeDirs from 'merge-dirs';
|
||||||
import { getVersions, getPackageJson, writePackageJson } from '../../lib/helpers';
|
import { getVersions, getPackageJson, writePackageJson } from '../../lib/helpers';
|
||||||
|
|
||||||
export default async () => {
|
export default async npmOptions => {
|
||||||
const [storybookVersion, babelCoreVersion, babelRuntimeVersion] = await getVersions(
|
const [storybookVersion, babelCoreVersion, babelRuntimeVersion] = await getVersions(
|
||||||
|
npmOptions,
|
||||||
'@storybook/marko',
|
'@storybook/marko',
|
||||||
'babel-core',
|
'babel-core',
|
||||||
'babel-runtime'
|
'babel-runtime'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user