mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:31:19 +08:00
Fallback for XSTORYBOOK_EXAMPLE_APP no longer needed
This commit is contained in:
parent
1d94f8cd19
commit
c02a061ac7
@ -19,24 +19,18 @@ const allowedEnvVariables = [
|
||||
*/
|
||||
export function stringifyProcessEnvs(raw: Builder_EnvsRaw, envPrefix: UserConfig['envPrefix']) {
|
||||
const updatedRaw: Builder_EnvsRaw = {};
|
||||
const envs = Object.entries(raw).reduce(
|
||||
(acc: Builder_EnvsRaw, [key, value]) => {
|
||||
// Only add allowed values OR values from array OR string started with allowed prefixes
|
||||
if (
|
||||
allowedEnvVariables.includes(key) ||
|
||||
(Array.isArray(envPrefix) && !!envPrefix.find((prefix) => key.startsWith(prefix))) ||
|
||||
(typeof envPrefix === 'string' && key.startsWith(envPrefix))
|
||||
) {
|
||||
acc[`import.meta.env.${key}`] = JSON.stringify(value);
|
||||
updatedRaw[key] = value;
|
||||
}
|
||||
return acc;
|
||||
},
|
||||
{
|
||||
// Default fallback
|
||||
'process.env.XSTORYBOOK_EXAMPLE_APP': '""',
|
||||
const envs = Object.entries(raw).reduce((acc: Builder_EnvsRaw, [key, value]) => {
|
||||
// Only add allowed values OR values from array OR string started with allowed prefixes
|
||||
if (
|
||||
allowedEnvVariables.includes(key) ||
|
||||
(Array.isArray(envPrefix) && !!envPrefix.find((prefix) => key.startsWith(prefix))) ||
|
||||
(typeof envPrefix === 'string' && key.startsWith(envPrefix))
|
||||
) {
|
||||
acc[`import.meta.env.${key}`] = JSON.stringify(value);
|
||||
updatedRaw[key] = value;
|
||||
}
|
||||
);
|
||||
return acc;
|
||||
}, {});
|
||||
|
||||
return envs;
|
||||
}
|
||||
|
@ -50,16 +50,10 @@ export const stringifyEnvs = (raw: Record<string, string>): Record<string, strin
|
||||
}, {});
|
||||
|
||||
export const stringifyProcessEnvs = (raw: Record<string, string>): Record<string, string> => {
|
||||
const envs = 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': '""',
|
||||
}
|
||||
);
|
||||
const envs = Object.entries(raw).reduce<Record<string, string>>((acc, [key, value]) => {
|
||||
acc[`process.env.${key}`] = JSON.stringify(value);
|
||||
return acc;
|
||||
}, {});
|
||||
// FIXME: something like this is necessary to support destructuring like:
|
||||
//
|
||||
// const { foo } = process.env;
|
||||
|
Loading…
x
Reference in New Issue
Block a user