Core: Fix process.env assignment

This commit is contained in:
Michael Shilman 2022-01-08 17:25:58 +08:00
parent cc14131e43
commit 68e8f1c9d6
3 changed files with 14 additions and 2 deletions

1
examples/react-ts/.env Normal file
View File

@ -0,0 +1 @@
FOO=bar

View File

@ -27,6 +27,13 @@ export const StoryNoRender = {
args: { label: 'magic!' }, args: { label: 'magic!' },
}; };
export const ProcessEnv = {
args: { label: process.env.FOO },
play: () => {
process.env.BAZ = 'moo';
},
};
export const StoryWithPlay = { export const StoryWithPlay = {
args: { label: 'play' }, args: { label: 'play' },
play: () => { play: () => {

View File

@ -59,8 +59,12 @@ export const stringifyProcessEnvs = (raw: Record<string, string>): Record<string
'process.env.XSTORYBOOK_EXAMPLE_APP': '""', 'process.env.XSTORYBOOK_EXAMPLE_APP': '""',
} }
); );
// support destructuring like // FIXME: something like this is necessary to support destructuring like:
//
// const { foo } = process.env; // const { foo } = process.env;
envs['process.env'] = JSON.stringify(raw); //
// However, it also means that process.env.foo = 'bar' will fail, so removing this:
//
// envs['process.env'] = JSON.stringify(raw);
return envs; return envs;
}; };