Sid Vishnoi
Sid Vishnoi
Something like using `requirements.txt` and `package.json`? Sending dependency update PRs could then be responsibility of Dependabot.
If you want to ignore the errors/warnings, you can use [`BUILD_FAIL_ON`](https://w3c.github.io/spec-prod/#build_fail_on) config option in spec-prod. This option applies to both W3C and GitHub pages build. > I don't know at...
It's still validating the built file, just it has been renamed to `index.html` [^1] Relevant code: https://github.com/w3c/spec-prod/blob/952786e0cf6d30139e585e05701ce7997758795b/src/build.ts#L143 > The validation therefore fails since there are custom features in the source...
It's not currently supported, though there are two ways this can be supported: 1. Once spec-prod finishes deployment to gh-pages, use a custom script/step in your workflow to copy content...
In a ReSpec document, the "no-diff" looks like following:  Edit: above can be filtered with: ```sh git show -p -U0 --diff-filter=M \ | grep '^[+-]' | grep -Ev '^(---...
An alternative could be to use puppeteer and set the "no-diff" fields (like dates, meta[generator]) to same values using DOM manipulation, and then compare resulting (prettified) HTML.
Help wanted: use prettier or html5-tidy? Prettier: Easy to install and run. Creates awkward output many times (self-closing tags with trailing slash, tags with many attributes go multi-line awkwardly). Tidy:...
Prettier with `--html-whitespace-sensitivity=ignore` seems nice, though it can have negative effect on layout and crawlers like reffy and specberus.
I will update docs to recommend not using node 16 manually and let it be controlled by spec-prod. Can you share some examples where (and possibly why) manual setup-node was...
To be clear, spec-prod doesn't require users to manually use `setup-node` in their workflows (now it in fact discourages it). If I understand correctly, you mean it started crashing if...