-
Notifications
You must be signed in to change notification settings - Fork 78
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
Added win build in release (experimental) #229
Conversation
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.
see comments
@@ -34,7 +34,7 @@ module.exports = { | |||
plugins: ['import', 'jest', '@typescript-eslint'], | |||
rules: { | |||
'no-void': ['warn', { allowAsStatement: true }], | |||
'linebreak-style': ['warn', isWindows ? 'windows' : 'unix'], | |||
'linebreak-style': ['warn', 'unix'], |
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 is this needed? I expected it to work with git's autocrlf setting - locally checked out files should have the native OS's line endings, and they will be converted to unix when pushed.
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.
When I run locally, it created a lot of noise and added files to the commit itself.
@@ -69,6 +69,8 @@ const volumeSkipList = [ | |||
/^\/$/, | |||
] | |||
|
|||
const toPosix = (x:string) => x.split(path.sep).join(path.posix.sep) |
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.
what is the difference between this and
x.replaceAll(path.sep, path.posix.sep)
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.
I assume there's no difference
[Is this a bugfix/feature/doc-improvement?]
This is a
By submitting this pull request I confirm I've read and complied with the below requirements 🖖
If this is a bug fix or feature: