mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
Merge pull request #15925 from vdh/fix-define-plugin
Core: Replaced `process.env` override in `DefinePlugin` config
This commit is contained in:
commit
06450c4f10
@ -85,9 +85,7 @@ if (process.env.NODE_ENV === 'production') {
|
||||
// http://vue-loader.vuejs.org/en/workflow/production.html
|
||||
module.exports.plugins = (module.exports.plugins || []).concat([
|
||||
new webpack.DefinePlugin({
|
||||
'process.env': {
|
||||
NODE_ENV: '"production"',
|
||||
},
|
||||
'process.env.NODE_ENV': '"production"',
|
||||
}),
|
||||
new webpack.optimize.UglifyJsPlugin({
|
||||
sourceMap: true,
|
||||
|
@ -18,7 +18,7 @@ import themingPaths from '@storybook/theming/paths';
|
||||
|
||||
import {
|
||||
toRequireContextString,
|
||||
stringifyEnvs,
|
||||
stringifyProcessEnvs,
|
||||
es6Transpiler,
|
||||
interpolate,
|
||||
nodeModulesPaths,
|
||||
@ -178,7 +178,7 @@ export default async ({
|
||||
template,
|
||||
}),
|
||||
new DefinePlugin({
|
||||
'process.env': stringifyEnvs(envs),
|
||||
...stringifyProcessEnvs(envs),
|
||||
NODE_ENV: JSON.stringify(envs.NODE_ENV),
|
||||
}),
|
||||
isProd ? null : new WatchMissingNodeModulesPlugin(nodeModulesPaths),
|
||||
|
@ -14,7 +14,7 @@ import themingPaths from '@storybook/theming/paths';
|
||||
import {
|
||||
toRequireContextString,
|
||||
es6Transpiler,
|
||||
stringifyEnvs,
|
||||
stringifyProcessEnvs,
|
||||
nodeModulesPaths,
|
||||
interpolate,
|
||||
Options,
|
||||
@ -178,7 +178,7 @@ export default async ({
|
||||
template,
|
||||
}),
|
||||
new DefinePlugin({
|
||||
'process.env': stringifyEnvs(envs),
|
||||
...stringifyProcessEnvs(envs),
|
||||
NODE_ENV: JSON.stringify(process.env.NODE_ENV),
|
||||
}),
|
||||
isProd ? null : new WatchMissingNodeModulesPlugin(nodeModulesPaths),
|
||||
|
@ -42,8 +42,21 @@ export function loadEnvs(
|
||||
};
|
||||
}
|
||||
|
||||
/** @deprecated use `stringifyProcessEnvs` */
|
||||
export const stringifyEnvs = (raw: Record<string, string>): Record<string, string> =>
|
||||
Object.entries(raw).reduce<Record<string, string>>((acc, [key, value]) => {
|
||||
acc[key] = JSON.stringify(value);
|
||||
return acc;
|
||||
}, {});
|
||||
|
||||
export const stringifyProcessEnvs = (raw: Record<string, string>): Record<string, string> =>
|
||||
Object.entries(raw).reduce<Record<string, string>>(
|
||||
(acc, [key, value]) => {
|
||||
acc[`process.env.${key}`] = JSON.stringify(value);
|
||||
return acc;
|
||||
},
|
||||
{
|
||||
// Default fallback
|
||||
'process.env.XSTORYBOOK_EXAMPLE_APP': '""',
|
||||
}
|
||||
);
|
||||
|
@ -15,7 +15,7 @@ import readPackage from 'read-pkg-up';
|
||||
import {
|
||||
loadManagerOrAddonsFile,
|
||||
resolvePathInStorybookCache,
|
||||
stringifyEnvs,
|
||||
stringifyProcessEnvs,
|
||||
es6Transpiler,
|
||||
getManagerHeadTemplate,
|
||||
getManagerMainTemplate,
|
||||
@ -113,7 +113,7 @@ export async function managerWebpack(
|
||||
(new Dotenv({ silent: true }) as any) as WebpackPluginInstance,
|
||||
// graphql sources check process variable
|
||||
new DefinePlugin({
|
||||
'process.env': stringifyEnvs(envs),
|
||||
...stringifyProcessEnvs(envs),
|
||||
NODE_ENV: JSON.stringify(envs.NODE_ENV),
|
||||
}) as WebpackPluginInstance,
|
||||
// isProd &&
|
||||
|
@ -14,7 +14,7 @@ import readPackage from 'read-pkg-up';
|
||||
import {
|
||||
loadManagerOrAddonsFile,
|
||||
resolvePathInStorybookCache,
|
||||
stringifyEnvs,
|
||||
stringifyProcessEnvs,
|
||||
es6Transpiler,
|
||||
getManagerHeadTemplate,
|
||||
getManagerMainTemplate,
|
||||
@ -113,7 +113,7 @@ export async function managerWebpack(
|
||||
hasDotenv() ? new Dotenv({ silent: true }) : null,
|
||||
// graphql sources check process variable
|
||||
new DefinePlugin({
|
||||
'process.env': stringifyEnvs(envs),
|
||||
...stringifyProcessEnvs(envs),
|
||||
NODE_ENV: JSON.stringify(envs.NODE_ENV),
|
||||
}) as WebpackPluginInstance,
|
||||
// isProd &&
|
||||
|
Loading…
x
Reference in New Issue
Block a user