mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:31:08 +08:00
Automatically remove storiesOf import
This commit is contained in:
parent
e2ced37f21
commit
c4e7ace84f
@ -2,7 +2,7 @@
|
||||
import React from 'react';
|
||||
import Button from './Button';
|
||||
|
||||
import { storiesOf, configure } from '@storybook/react';
|
||||
import { configure } from '@storybook/react';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
|
||||
export default {
|
||||
|
@ -2,8 +2,6 @@
|
||||
import React from 'react';
|
||||
import Button from './Button';
|
||||
|
||||
import { storiesOf } from '@storybook/react';
|
||||
|
||||
export default {
|
||||
title: 'Button',
|
||||
|
||||
|
@ -2,8 +2,6 @@
|
||||
import React from 'react';
|
||||
import Button from './Button';
|
||||
|
||||
import { storiesOf } from '@storybook/react';
|
||||
|
||||
export default {
|
||||
title: 'Button',
|
||||
};
|
||||
|
@ -147,12 +147,25 @@ export default function transformer(file, api) {
|
||||
|
||||
// each top-level add expression corresponds to the last "add" of the chain.
|
||||
// replace it with the entire export statements
|
||||
const topLevelAddExpressions = root
|
||||
root
|
||||
.find(j.CallExpression)
|
||||
.filter(add => add.node.callee.property && add.node.callee.property.name === 'add')
|
||||
.filter(add => add.node.arguments.length >= 2 && add.node.arguments[0].type === 'Literal')
|
||||
.filter(add => add.parentPath.node.type === 'ExpressionStatement')
|
||||
.forEach(convertToModuleExports);
|
||||
|
||||
// remove storiesOf import
|
||||
root
|
||||
.find(j.ImportSpecifier)
|
||||
.filter(
|
||||
spec =>
|
||||
spec.node.imported.name === 'storiesOf' &&
|
||||
spec.parent.node.source.value.startsWith('@storybook/')
|
||||
)
|
||||
.forEach(spec => {
|
||||
const toRemove = spec.parent.node.specifiers.length > 1 ? spec : spec.parent;
|
||||
j(toRemove).remove();
|
||||
});
|
||||
|
||||
return root.toSource({ quote: 'single', trailingComma: 'true', tabWidth: 2 });
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user