-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(build): fix define plugin spread operations #4397
Conversation
@@ -15,6 +15,7 @@ module.exports = { | |||
} | |||
} | |||
}, | |||
'process.env.SOMEVAR': '"SOMEVAR"' | |||
'process.env.SOMEVAR': '"SOMEVAR"', | |||
'process.env.SOMEOBJ': { spread: true } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why would 'process.env.SOMEOBJ': { spread: true }
every be a possible value?
I think process.env.SOMETHING
will ever be a string, something other than a string should not be allowed or be parse with JSON.parse
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True. I hadn't really thought about that. It's a silly example.
I'll update it to be make more sense, such as: { ...process.env.NODE_ENV === 'dev' ? { dev: true } : {} }
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets say process.env.NODE_ENV
is defined as 'dev'
Even then ...process.env.NODE_ENV === 'dev'
would be false
cause e.g. ...'dev'
would spread the string into something like a char array 👀
So why and when would you need spread for a process env variable?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not spreading the env variable, but rather using it in a ternary operator that spreads another object. I was using it in a config object where I needed to add conditional config based on an env variable.
const config = {
...process.env.NODE_ENV === 'dev' ? { watch: true } : { minify: true }
}
I know that code could be written a lot of different ways, and I've since refactored it, but I thought I'd send in a PR since it took me some debugging and I figured someone else might run into the same issue at some point.
The same issue would appear when spreading something from env into an array, which might be more common than my use case. Something like const sequence = [ ...process.env.SOME_NUMBERS ]
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wait... is
const config = {
...process.env.NODE_ENV === 'dev' ? { watch: true } : { minify: true }
}
even allowed JS?
Shouldn't it be at least e.g.
const config = {
...(process.env.NODE_ENV === 'dev' ? { watch: true } : { minify: true })
}
👀
And also const sequence = [ ...process.env.SOME_NUMBERS ]
should already be allowed, isn't it?
I would think it will result in e.g. ['0', '1', '2']
where process.env.SOME_NUMBERS
equals to '012'
So are you sure this PR is really fixing anything? And if so, what?
And then please update the tests that should fail without the changes.
And tests should not contain invalid usages of process.env
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wait... is
const config = { ...process.env.NODE_ENV === 'dev' ? { watch: true } : { minify: true } }even allowed JS?
Shouldn't it be at least e.g.const config = { ...(process.env.NODE_ENV === 'dev' ? { watch: true } : { minify: true }) }
I got confused by that at first as well. But it's allowed.
And also
const sequence = [ ...process.env.SOME_NUMBERS ]
should already be allowed, isn't it?
I would think it will result in e.g.['0', '1', '2']
whereprocess.env.SOME_NUMBERS
equals to'012'
It will still fail the RegExp because of the preceding ...
. I updated the tests to include that as well.
So are you sure this PR is really fixing anything? And if so, what?
And then please update the tests that should fail without the changes.
And tests should not contain invalid usages ofprocess.env
I have cleaned the tests and verified that this fix does work. Both tests I added will fail without the addition to the RegExp:
After the RegExp fix:
Description
I noticed a bug in the define plugin where the RegExp would not match when using spread operations. For instance, this would not get replaced:
By adding another negative look-behind inside, it will accept
...
but still reject.
.Additional context
n/a
What is the purpose of this pull request?
Before submitting the PR, please make sure you do the following
fixes #123
).