Pete Gonzalez

Results 687 comments of Pete Gonzalez
trafficstars

It would be helpful to know a little more about your usage and documentation pipeline. The `:::admonition` markup for example, where is this syntax defined? What tool is processing it?

I'm not sure Git commits are the best way to author a changelog for a monorepo with lots of projects and teams. **Git commits document steps of work.** For example,...

This sounds pretty reasonable. Is anyone available to work on it?

> For change log, is it possible to add another prompt message? like `Does this change affect any open issues?` > Then add issue id in the json that generated...

> In case somebody is still interested, I wrote a script creating change files based on commits, respecting [conventional commits](https://www.conventionalcommits.org/). It's described [here](https://dev.to/kkazala/rush-and-changelog-generation-part-2-5g11) + [here](https://dev.to/kkazala/rush-and-changelog-generation-part-3-2j9d). The code is on [GitHub](https://github.com/kkazala/rush-conventionalcommits/tree/ac27bc0e6d9f0f32cbdabd8adf5964a68442ac2b)...

This is the best idea I've heard yet for adapting the spirit of conventional commits to the `rush change` workflow. 👌 Could you give a little more detail about the...

> If `--show-commits`, we display commits history, I'm currently using `git shortlog` but if there are many commits, this will have to be approached differently. It's not use-friendly to display...

> Maybe it would be helpful to detect if there are any new commits after the newest change file has been created? Our typical workflow goes like this: 1. You...

You are right: Technically the JSON Schema specification defines a `$comment` field presumably because their [dialect of JSON](https://json5.org/) does not support JavaScript comments: https://json-schema.org/latest/json-schema-core.html#rfc.section.9 However, I have yet to see...

Our [JsonFile API](https://github.com/Microsoft/web-build-tools/blob/master/libraries/node-core-library/src/JsonFile.ts) internally uses [jju](https://www.npmjs.com/package/jju) for parsing JSON. It's a really good JSON parser. (By comparison `JSON.parse` has the major downside of not providing line number information in its...