Skip to content
This repository has been archived by the owner on Jan 6, 2021. It is now read-only.

feat(args): convert embedded and braced variables in command args #86

Merged
merged 4 commits into from
Mar 14, 2017

Conversation

hgwood
Copy link
Collaborator

@hgwood hgwood commented Mar 14, 2017

Hello again. :)

Now for the actual contribution I mentioned in #85. It turns out it supersedes #85, but I submitted #85 anyway because I thought it could still be useful for you to make a patch release, and you did, so that's great! This contribution however, is a breaking change.

If you feed cross-env on Windows with something like echo $npm_package_name $npm_package_version, it correctly runs echo %npm_package_name% %npm_package_version%. But if instead you feed it with echo $npm_package_name/$npm_package_version (notice the slash in the middle), then it runs echo %npm_package_name%. That is because the command argument is replaced by the converted first match of a variable pattern. The goal of this PR is to make cross-env support variables embedded inside arguments, so that it would instead run echo %npm_package_name%/%npm_package_version% (breaking change).

Supporting embedded variables means cross-env also needs to support braced variables on Unix (${myvar}), so this PR introduces that as well.

Let me know if you find this feature useful.

@codecov-io
Copy link

codecov-io commented Mar 14, 2017

Codecov Report

Merging #86 into next will not change coverage.
The diff coverage is 100%.

@@         Coverage Diff         @@
##           next    #86   +/-   ##
===================================
  Coverage   100%   100%           
===================================
  Files         2      2           
  Lines        34     31    -3     
===================================
- Hits         34     31    -3
Impacted Files Coverage Δ
src/command.js 100% <100%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update c1a9ed0...3ddf846. Read the comment docs.

Copy link
Owner

@kentcdodds kentcdodds left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm good with this. Just a few comments/questions. Thanks!

command = isWin ? `%${match[1]}%` : `$${match[1]}`
}
return command
return command.replace(envExtract, isWin ? '%$1$2%' : '$$$1')
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice!

src/command.js Outdated
const envUseUnixRegex = /\$(\w+)/ // $my_var
const envUseWinRegex = /%(.*?)%/ // %my_var%
const envUseUnixRegex = /\$(\w+)|\${(\w+)}/g // $my_var or ${my_var}
const envUseWinRegex = /%(.*?)%/g // %my_var%
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need to be concerned about the g here based on your last PR? Perhaps we could just inline these regex declarations within the commandConvert function. I'm sure there's no relevant perf issues with that, and we could avoid the stateful nature of g.

Copy link
Collaborator Author

@hgwood hgwood Mar 14, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The issue from my last PR arises from the use of g and RegExp.prototype.exec. So here it is OK to use g because exec is not used anymore, and the test I added ensures the problem does not return in the future. That said, I also think inlining would be even safer, so I'll do that. Would you prefer that I keep them as variable inside commandConvert or that I inline them directly in the ternary on line 15?

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Keep them as a variable. That'll help it be self-documenting 👏

)
})

test(`
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm guessing you had to do this because of linting? How about instead you just make it one line and add:

// eslint-disable-next-line max-len

On the line above this one. Would that be ok?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure.


test(`converts braced unix-style env variable usage for windows`, () => {
isWindowsMock.__mock.returnValue = true
// eslint-disable-next-line no-template-curly-in-string
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Haha, one of the few cases where this rule needs to be disable 😆

@kentcdodds kentcdodds changed the base branch from master to next March 14, 2017 17:06
@kentcdodds
Copy link
Owner

I changed the base of this PR from master to next so we can queue up a few breaking changes. So this wont be released after it's merged (as it normally would). It will be released when next is merged into master. Also, we can release a beta and make sure it works. That'd probably be a good idea :)

@kentcdodds
Copy link
Owner

Actually, if you wanna do this in another PR to next, and maybe even this really simple change in another PR to next that'd be awesome. I can't think of any other things I intend to break, so once those are all in next, we can merge that to master and get this all released 👍

Copy link
Owner

@kentcdodds kentcdodds left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Super!

@kentcdodds kentcdodds merged commit d09dea5 into kentcdodds:next Mar 14, 2017
@hgwood
Copy link
Collaborator Author

hgwood commented Mar 14, 2017

Thanks for the review. I will have a look at those other PR/issues either later tonight or tomorrow, and see what I can do.

@hgwood hgwood deleted the feat/multi-env-vars branch March 14, 2017 17:29
@kentcdodds
Copy link
Owner

Thanks so much for your help! I've added you as a collaborator on the project. Please make sure that you review the CONTRIBUTING.md file (specifically the bit about the commit messages and the git hooks) and familiarize yourself with the code of conduct (we're using the contributor covenant). You might also want to watch the repo to be notified when someone files an issue/PR. Please continue to make PRs as you feel the need (you can make your branches directly on the repo rather than your fork if you want). Thanks! And welcome to the team :)

kentcdodds pushed a commit that referenced this pull request Mar 31, 2017
* feat(args): convert variables embedded in command args

* feat(args): convert braced variables in command args

* style(args): full test name on one line

* refactor(args): make commandConvert definitly stateless

BREAKING CHANGE: `echo $var2/$var1` would not be changed on windows, now it is. This is kind of a bug, but we're doing a major version bump to be safe.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants