-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Add mocha.js to .gitignore #2267
Conversation
Meh, .gitignore only affects untracked files. My bad. |
no, this is a good idea, it just needs more pieces:
this will ensure |
actually looks like we're using an |
ehh we are using both, we only need one--I'll remove |
I thought we had the browser bundle in git for people to download it from the repo or something.
|
I don't know why. You can download it with zip files or whatever. But if you need the latest version and happen to be on a system without See #2268. I almost want to roll that into this; it shouldn't take too long to just convert the targets to npm scripts... 😛 |
I think we can get away with just making the |
e06f46a
to
0d2e8a1
Compare
(squashed) |
- makes contributing more dev-friendly - removes unused `.npmignore` - add `npm test` to `preversion` script - `make` not needed to build `mocha.js` for portability
0d2e8a1
to
59cf1a8
Compare
amended |
b8f115b
to
f2bba35
Compare
f2bba35
to
4c89b86
Compare
actually nevermind. we lose bower support if we remove the artifact from vcs. |
Bower looks at the specific release, right? So we could check it in for the release commit, then delete it in the first commit to master after the release? |
@ScottFreeCode bower doesn't look at anything except VCS tags, which means you have to include your build artifacts in VCS. some projects make a separate repo just for this. npmcdn.com is another option, but I couldn't get it working trivially (try |
I mean, could we explicitly add it (overriding .gitignore) only in the tagged commits for each release and then take it back out in the next commit after so it's in VCS for Bower looking at the tags but .gitignore keeps people from committing it in general? |
@ScottFreeCode that seems like a pain in the butt 😛 |
Also, think of cdnjs. |
Makes contributing more dev-friendly, specially for newcomers to the
project.