-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Remove legacy .gitignore rules #1244
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.
We need the dist/
folder. Other than that, I think it's OK 😄 .
.gitignore
Outdated
@@ -19,10 +19,5 @@ fixtures/typings-test/*.js | |||
# Directories needed for code coverage | |||
/coverage/ | |||
|
|||
# Keep legacy files out of the repo, this can be removed when we merge v3 into master | |||
dist/ |
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.
We need dist/
to keep the distribution files created by the following lines:
Lines 17 to 18 in 6c54c6c
export BUILD_DIR=dist | |
npm run build |
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.
Ah, that's where it's done. Was there any reason we don't just move the build dir to dist?
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.
Created #1254 to follow this question up
@parisk we don't need the dist/ rule anymore right?