mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:01:05 +08:00
Core: Fix process.env assignment
This commit is contained in:
parent
cc14131e43
commit
68e8f1c9d6
1
examples/react-ts/.env
Normal file
1
examples/react-ts/.env
Normal file
@ -0,0 +1 @@
|
|||||||
|
FOO=bar
|
@ -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: () => {
|
||||||
|
@ -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;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user