mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Use consistent vite plugin names
This will make them easier to understand in debug logs, for instance.
This commit is contained in:
parent
e39716fffa
commit
119a2d45f1
@ -32,7 +32,7 @@ export function reactDocgen({
|
||||
const filter = createFilter(include, exclude);
|
||||
|
||||
return {
|
||||
name: 'react-docgen',
|
||||
name: 'storybook:react-docgen-plugin',
|
||||
enforce: 'pre',
|
||||
async transform(src: string, id: string) {
|
||||
const relPath = path.relative(cwd, id);
|
||||
|
@ -15,7 +15,7 @@ export default function csfPlugin(svelteOptions?: Options) {
|
||||
const filter = createFilter(include);
|
||||
|
||||
return {
|
||||
name: 'storybook-addon-svelte-csf',
|
||||
name: 'storybook:addon-svelte-csf-plugin',
|
||||
enforce: 'post',
|
||||
async transform(code: string, id: string) {
|
||||
if (!filter(id)) return undefined;
|
||||
|
@ -49,7 +49,7 @@ export function svelteDocgen(svelteOptions: Record<string, any>): Plugin {
|
||||
const filter = createFilter(include);
|
||||
|
||||
return {
|
||||
name: 'svelte-docgen',
|
||||
name: 'storybook:svelte-docgen-plugin',
|
||||
async transform(src: string, id: string) {
|
||||
if (!filter(id)) return undefined;
|
||||
|
||||
|
@ -8,7 +8,7 @@ export function vueDocgen(): Plugin {
|
||||
const filter = createFilter(include);
|
||||
|
||||
return {
|
||||
name: 'vue-docgen',
|
||||
name: 'storybook:vue-docgen-plugin',
|
||||
|
||||
async transform(src: string, id: string) {
|
||||
if (!filter(id)) return undefined;
|
||||
|
@ -26,7 +26,7 @@ export function codeGeneratorPlugin(options: ExtendedOptions): Plugin {
|
||||
|
||||
// noinspection JSUnusedGlobalSymbols
|
||||
return {
|
||||
name: 'storybook-vite-code-generator-plugin',
|
||||
name: 'storybook:code-generator-plugin',
|
||||
enforce: 'pre',
|
||||
configureServer(server) {
|
||||
// invalidate the whole vite-app.js script on every file change.
|
||||
|
@ -6,7 +6,7 @@ const include = [/\.stories\.([tj])sx?$/, /(stories|story).mdx$/];
|
||||
const filter = createFilter(include);
|
||||
|
||||
export const injectExportOrderPlugin = {
|
||||
name: 'storybook-vite-inject-export-order-plugin',
|
||||
name: 'storybook:inject-export-order-plugin',
|
||||
// This should only run after the typescript has been transpiled
|
||||
enforce: 'post',
|
||||
async transform(code: string, id: string) {
|
||||
|
@ -36,7 +36,7 @@ export function mdxPlugin(options: Options): Plugin {
|
||||
const filter = createFilter(include);
|
||||
|
||||
return {
|
||||
name: 'storybook-vite-mdx-plugin',
|
||||
name: 'storybook:mdx-plugin',
|
||||
enforce: 'pre',
|
||||
configResolved({ plugins }) {
|
||||
// @vitejs/plugin-react-refresh has been upgraded to @vitejs/plugin-react,
|
||||
|
@ -21,7 +21,7 @@ const replaceAll = (str: string, search: string, replacement: string) => {
|
||||
export function sourceLoaderPlugin(config: ExtendedOptions): Plugin | Plugin[] {
|
||||
if (config.configType === 'DEVELOPMENT') {
|
||||
return {
|
||||
name: 'storybook-vite-source-loader-plugin',
|
||||
name: 'storybook:source-loader-plugin',
|
||||
enforce: 'pre',
|
||||
async transform(src: string, id: string) {
|
||||
if (id.match(storyPattern)) {
|
||||
|
@ -10,7 +10,7 @@ import MagicString from 'magic-string';
|
||||
export function stripStoryHMRBoundary(): Plugin {
|
||||
const filter = createFilter(/\.stories\.([tj])sx?$/);
|
||||
return {
|
||||
name: 'storybook:strip-hmr-boundary',
|
||||
name: 'storybook:strip-hmr-boundary-plugin',
|
||||
enforce: 'post',
|
||||
async transform(src: string, id: string) {
|
||||
if (!filter(id)) return undefined;
|
||||
|
Loading…
x
Reference in New Issue
Block a user