You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using a package.json file in our doc repos root defining scripts like building the docs or "serve": "http-server public/ -d -i" which starts a mini webserver to see the rendered result.
This issue above came up using the serve command which is triggered via yarn serve.
Using node v16.13.2
I started to get error messages when running
yarn serve
:(node:428317) [DEP0066] DeprecationWarning: OutgoingMessage.prototype._headers is deprecated
There are 5 occurrences of
._headers
in the final build ofasciidoctor-kroki.js
.Doing some research, a possible fix can be done by replacing:
._headers
with.getHeaders()
The text was updated successfully, but these errors were encountered: