Merge pull request #19039 from storybookjs/symlinks-in-vite

This commit is contained in:
Michael Shilman 2022-08-29 15:48:48 +08:00 committed by GitHub
commit eaac79569a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 5 deletions

View File

@ -3,6 +3,7 @@ import fs from 'fs';
import { Plugin } from 'vite'; import { Plugin } from 'vite';
import viteReact from '@vitejs/plugin-react'; import viteReact from '@vitejs/plugin-react';
import type { UserConfig } from 'vite'; import type { UserConfig } from 'vite';
import { isPreservingSymlinks } from '@storybook/core-common';
import { allowedEnvPrefix as envPrefix } from './envs'; import { allowedEnvPrefix as envPrefix } from './envs';
import { codeGeneratorPlugin } from './code-generator-plugin'; import { codeGeneratorPlugin } from './code-generator-plugin';
import { injectExportOrderPlugin } from './inject-export-order-plugin'; import { injectExportOrderPlugin } from './inject-export-order-plugin';
@ -33,6 +34,7 @@ export async function commonConfig(
cacheDir: 'node_modules/.vite-storybook', cacheDir: 'node_modules/.vite-storybook',
envPrefix, envPrefix,
define: {}, define: {},
resolve: { preserveSymlinks: isPreservingSymlinks() },
plugins: await pluginConfig(options, _type), plugins: await pluginConfig(options, _type),
}; };
} }

View File

@ -17,6 +17,7 @@ import {
normalizeStories, normalizeStories,
readTemplate, readTemplate,
loadPreviewOrConfigFile, loadPreviewOrConfigFile,
isPreservingSymlinks,
} from '@storybook/core-common'; } from '@storybook/core-common';
import { toRequireContextString, toImportFn } from '@storybook/core-webpack'; import { toRequireContextString, toImportFn } from '@storybook/core-webpack';
import type { BuilderOptions, TypescriptOptions } from '../types'; import type { BuilderOptions, TypescriptOptions } from '../types';
@ -168,10 +169,6 @@ export default async (
const shouldCheckTs = typescriptOptions.check && !typescriptOptions.skipBabel; const shouldCheckTs = typescriptOptions.check && !typescriptOptions.skipBabel;
const tsCheckOptions = typescriptOptions.checkOptions || {}; const tsCheckOptions = typescriptOptions.checkOptions || {};
const { NODE_OPTIONS, NODE_PRESERVE_SYMLINKS } = process.env;
const isPreservingSymlinks =
!!NODE_PRESERVE_SYMLINKS || NODE_OPTIONS?.includes('--preserve-symlinks');
return { return {
name: 'preview', name: 'preview',
mode: isProd ? 'production' : 'development', 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. // 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: // This feels like it should be default out-of-the-box in webpack :shrug:
symlinks: !isPreservingSymlinks, symlinks: !isPreservingSymlinks(),
}, },
optimization: { optimization: {
splitChunks: { splitChunks: {

View File

@ -26,6 +26,7 @@ export * from './utils/glob-to-regexp';
export * from './utils/normalize-stories'; export * from './utils/normalize-stories';
export * from './utils/readTemplate'; export * from './utils/readTemplate';
export * from './utils/findDistEsm'; export * from './utils/findDistEsm';
export * from './utils/symlinks';
export * from './types'; export * from './types';

View 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');
}