-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
refactor: use top-level .gitignore & .travis.yml #873
Conversation
Follow up based on a review comment here: #858 (comment) 36 This removes package level .gitignore and .travis.yml files in favour of top-level files.
@@ -1,3 +0,0 @@ | |||
coverage | |||
node_modules |
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.
do we need a line for cli/node_modules
in the top-level as well?
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 don't think so. node_modules
in top level .gitignore
should have it covered.
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.
top level has a node_modules
folder which works for all sub-directories. sandbox
was specific to cli so it was marked as such.
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.
oops didn't see your response there ... but what @raymondfeng said basically.
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.
👍
Follow up based on a review comment here: #858 (comment) This removes package level .gitignore and .travis.yml files in favour of top-level files.
Follow up based on a review comment here:
#858 (comment)
This removes package level .gitignore and .travis.yml files in favour
of top-level files.
Checklist
npm test
passes on your machinepackages/cli
were updatedpackages/example-*
were updated