mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Merge pull request #19039 from storybookjs/symlinks-in-vite
This commit is contained in:
commit
eaac79569a
@ -3,6 +3,7 @@ import fs from 'fs';
|
||||
import { Plugin } from 'vite';
|
||||
import viteReact from '@vitejs/plugin-react';
|
||||
import type { UserConfig } from 'vite';
|
||||
import { isPreservingSymlinks } from '@storybook/core-common';
|
||||
import { allowedEnvPrefix as envPrefix } from './envs';
|
||||
import { codeGeneratorPlugin } from './code-generator-plugin';
|
||||
import { injectExportOrderPlugin } from './inject-export-order-plugin';
|
||||
@ -33,6 +34,7 @@ export async function commonConfig(
|
||||
cacheDir: 'node_modules/.vite-storybook',
|
||||
envPrefix,
|
||||
define: {},
|
||||
resolve: { preserveSymlinks: isPreservingSymlinks() },
|
||||
plugins: await pluginConfig(options, _type),
|
||||
};
|
||||
}
|
||||
|
@ -17,6 +17,7 @@ import {
|
||||
normalizeStories,
|
||||
readTemplate,
|
||||
loadPreviewOrConfigFile,
|
||||
isPreservingSymlinks,
|
||||
} from '@storybook/core-common';
|
||||
import { toRequireContextString, toImportFn } from '@storybook/core-webpack';
|
||||
import type { BuilderOptions, TypescriptOptions } from '../types';
|
||||
@ -168,10 +169,6 @@ export default async (
|
||||
const shouldCheckTs = typescriptOptions.check && !typescriptOptions.skipBabel;
|
||||
const tsCheckOptions = typescriptOptions.checkOptions || {};
|
||||
|
||||
const { NODE_OPTIONS, NODE_PRESERVE_SYMLINKS } = process.env;
|
||||
const isPreservingSymlinks =
|
||||
!!NODE_PRESERVE_SYMLINKS || NODE_OPTIONS?.includes('--preserve-symlinks');
|
||||
|
||||
return {
|
||||
name: 'preview',
|
||||
mode: isProd ? 'production' : 'development',
|
||||
@ -275,7 +272,7 @@ export default async (
|
||||
},
|
||||
// Set webpack to resolve symlinks based on whether the user has asked node to.
|
||||
// This feels like it should be default out-of-the-box in webpack :shrug:
|
||||
symlinks: !isPreservingSymlinks,
|
||||
symlinks: !isPreservingSymlinks(),
|
||||
},
|
||||
optimization: {
|
||||
splitChunks: {
|
||||
|
@ -26,6 +26,7 @@ export * from './utils/glob-to-regexp';
|
||||
export * from './utils/normalize-stories';
|
||||
export * from './utils/readTemplate';
|
||||
export * from './utils/findDistEsm';
|
||||
export * from './utils/symlinks';
|
||||
|
||||
export * from './types';
|
||||
|
||||
|
4
code/lib/core-common/src/utils/symlinks.ts
Normal file
4
code/lib/core-common/src/utils/symlinks.ts
Normal file
@ -0,0 +1,4 @@
|
||||
export function isPreservingSymlinks() {
|
||||
const { NODE_OPTIONS, NODE_PRESERVE_SYMLINKS } = process.env;
|
||||
return !!NODE_PRESERVE_SYMLINKS || NODE_OPTIONS?.includes('--preserve-symlinks');
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user