Skip to content
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

Merged
merged 6 commits into from
Oct 16, 2023
Merged

Conversation

Yshayy
Copy link
Contributor

@Yshayy Yshayy commented Sep 18, 2023

[Is this a bugfix/feature/doc-improvement?]

This is a

  • Bug fix
  • Feature
  • Doc improvement

By submitting this pull request I confirm I've read and complied with the below requirements 🖖

  • I have used Preevy for a while and am familiar with the function it providers.

If this is a bug fix or feature:

  • I tested the proposed change on my cloud provider: Please specify which provider
  • I tested the proposed change on a local Kubernetes cluster.

Copy link
Collaborator

@royra royra left a 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'],
Copy link
Collaborator

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.

Copy link
Contributor Author

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)
Copy link
Collaborator

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)

Copy link
Contributor Author

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

@Yshayy Yshayy marked this pull request as ready for review October 16, 2023 11:16
@Yshayy Yshayy merged commit 10497c8 into main Oct 16, 2023
14 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants