-
Notifications
You must be signed in to change notification settings - Fork 20
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
Allow version configuration #38
Conversation
@@ -115,6 +116,6 @@ public function getOutputCssContent(): string | |||
|
|||
private function createBinary(): TailwindBinary | |||
{ | |||
return new TailwindBinary($this->tailwindVarDir, $this->projectRootDir, $this->binaryPath, $this->output); | |||
return new TailwindBinary($this->tailwindVarDir, $this->projectRootDir, $this->binaryPath, $this->binaryVersion, $this->output); |
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.
Hm, this will introduce a possible BC break, though not sure if we can neglect it and mention in the release, it's convenient to have those 2 args close to each other
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.
TailwindBinary is basically internal,, so mentioning it in the release is OK i guess.
Co-authored-by: Victor Bocharsky <[email protected]>
We started having some randomly failing tests on Windows... do you have any ideas to make that stable? Looks like a permissions issue :/ |
Sorry. Not a clue... |
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.
OK, this looks great to me, thank you for working on it!
Co-authored-by: Victor Bocharsky <[email protected]>
Follow up for #34 as discussed there in the comments