Gert Van Gool
Gert Van Gool
If you use `git tag --annotate`, it will prompt for a message like `git commit`. So thought it was better to pass in the message immediately. You could also provide...
Agreed, sounds good. I'll update accordingly.
I'm not entirely happy at the moment with the escaping, but you can pass anything to the underlying command (`git tag` or in the future `hg tag`). Maybe you have...
@ekohl no problem, go wild! I'm not using it at my current job. So haven't looked at it in while.
We've solved this by using [postcss-nested-import](https://github.com/eriklharper/postcss-nested-import) and [postcss-nested](https://github.com/postcss/postcss-nested). Our new style sheet is (stored in `assets/css`): ```css @import "@stoplight/mosaic/themes/default.css"; elements-api { @nested-import "../../node_modules/@stoplight/elements/styles.min.css"; } ``` PostCSS config: ```js module.exports =...
If you're interested, I'll rebase it onto master and make a pull request.
I modified it for friends because they weren't using the network part (only file output). I'm guessing it currently doesn't support the `-` shortcut for `/dev/stdout`.
I've created to pull requests: #25 and #26. They will have a merge conflict on the `getopt` line. I'll fix it when either one gets merged. @lars18th: I have a...
@lars18th check [gvangool/mptsd@issue-24](https://github.com/gvangool/mptsd/commits/issue-24). It combines both pull requests and 1 new change (f36f5da042bf4e076f1ac3fccefa5a2206d162f0).
Could you provide me with a full example? Since there is currently no test suite it's hard to test anything, but what we use. In [my fork](http://github.com/gvangool/wapi/), I made modification...