mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
rename variable
This commit is contained in:
parent
cd3164acb9
commit
c0679c4094
@ -17,14 +17,14 @@ module.exports = {
|
||||
ImportDeclaration: (node) => {
|
||||
const fileName = context.getPhysicalFilename();
|
||||
const isInCLI = !!fileName.includes(path.join('code', 'lib', 'cli') + path.sep);
|
||||
const isInCodeod = !!fileName.includes(path.join('code', 'lib', 'codemod'));
|
||||
const isInCodemod = !!fileName.includes(path.join('code', 'lib', 'codemod'));
|
||||
const isInCore = !!fileName.includes(path.join('code', 'core'));
|
||||
|
||||
if (
|
||||
node.source.value.startsWith('@storybook/core/') &&
|
||||
!isInCLI &&
|
||||
!isInCore &&
|
||||
!isInCodeod
|
||||
!isInCodemod
|
||||
) {
|
||||
const newPath = node.source.value
|
||||
.replace('@storybook/core', 'storybook/internal')
|
||||
|
Loading…
x
Reference in New Issue
Block a user