Conversation
|
Remaining concerns:
|
|
|
Regarding 4: one thing we can do is render a complete list into |
|
And when we have a |
| | **Yoshua Wuyts** | [**@yoshuawuyts**](https://github.com/yoshuawuyts) | [**@yoshuawuyts@twitter**](https://twitter.com/yoshuawuyts) | | ||
| | **Calvin Metcalf** | [**@calvinmetcalf**](https://github.com/calvinmetcalf) | | | ||
| | **Nicholas Westlake** | [**@nrw**](https://github.com/nrw) | | | ||
| | **Bryce Baril** | [**@brycebaril**](https://github.com/brycebaril) | [**@brycebaril@twitter**](https://twitter.com/brycebaril) | |
There was a problem hiding this comment.
@vweevers Now we're getting somewhere. Looks really nice!
| "test": "standard && airtap --local --no-coverage test/index.js", | ||
| "test-browsers": "standard && airtap --sauce-connect --loopback airtap.local --no-coverage test/index.js" | ||
| "test-browsers": "standard && airtap --sauce-connect --loopback airtap.local --no-coverage test/index.js", | ||
| "remark": "remark README.md CONTRIBUTORS.md -o" |
There was a problem hiding this comment.
How does remark know how each file should be processed and which plugin to apply to which output? CONTRIBUTORS.md is completely generated, right? Just curious about the algorithm of this command, in which order things are done etc.
There was a problem hiding this comment.
It's pretty much the same as doing remark README.md && remark CONTRIBUTORS.md. It'll use the same configuration, same list of plugins, but it creates a new processor (and plugin "instances") for each file.
There was a problem hiding this comment.
If you're wondering why remark-git-contributors doesn't modify README.md: because README.md doesn't have a # Contributors heading.
There was a problem hiding this comment.
Aah ok. So I guess this means CONTRIBUTORS.md has to exist and have an empty # Contributors section at the very least.
|
@vweevers I'm guessing we are going to need our own custom tool, e.g. |
That's where I was going with |
|
We also want to use |
Aaaaaah! Now it makes even more sense 💡 |
Trying out some things, don't merge yet. Running
npm run remarkwill regenerate the contributors section in the README.@ralphtheninja