-
-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29075 from storybookjs/version-non-patch-from-8.3…
….0-beta.4 Release: Prerelease 8.3.0-beta.5
- Loading branch information
Showing
60 changed files
with
1,404 additions
and
304 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
export const virtualFileId = '/virtual:/@storybook/builder-vite/vite-app.js'; | ||
export const virtualStoriesFile = '/virtual:/@storybook/builder-vite/storybook-stories.js'; | ||
export const virtualPreviewFile = '/virtual:/@storybook/builder-vite/preview-entry.js'; | ||
export const virtualAddonSetupFile = '/virtual:/@storybook/builder-vite/setup-addons.js'; | ||
export const SB_VIRTUAL_FILES = { | ||
VIRTUAL_APP_FILE: '/virtual:/@storybook/builder-vite/vite-app.js', | ||
VIRTUAL_STORIES_FILE: '/virtual:/@storybook/builder-vite/storybook-stories.js', | ||
VIRTUAL_PREVIEW_FILE: '/virtual:/@storybook/builder-vite/preview-entry.js', | ||
VIRTUAL_ADDON_SETUP_FILE: '/virtual:/@storybook/builder-vite/setup-addons.js', | ||
}; | ||
|
||
export function getResolvedVirtualModuleId(virtualModuleId: string) { | ||
return `\0${virtualModuleId}`; | ||
} | ||
|
||
export function getOriginalVirtualModuleId(resolvedVirtualModuleId: string) { | ||
return resolvedVirtualModuleId.slice(1); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.