Does grunt-karma in core libs for Quarto blog need a security update? #7384
-
DescriptionI got a security alert from github dependabot in the repository of my personal quarto blog, stating that The affected file is _freeze/site_libs/core-js-2.5.3/package.json Is there some way to update this myself? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
We don't put package.json files in your _files directory or use grunt ourselves. That's something you did, I'm pretty sure. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your replies! That's odd, I have no idea what that grunt-karma.js or core,js is. I certainly did not add the package.json manually. If I find something of interest, I'll post it here for documentation purpose. |
Beta Was this translation helpful? Give feedback.
-
Hi @nucleic-acid, I had the same issue and figured out what was causing it. As @cscheid mentioned, it is not from quarto's problem. but from R code chunk. When you use the I'm not sure why it happened, But to solve this issue change For me, I changed Hope this helpful. |
Beta Was this translation helpful? Give feedback.
Hi @nucleic-acid, I had the same issue and figured out what was causing it.
As @cscheid mentioned, it is not from quarto's problem. but from R code chunk.
When you use the
reactable
to render table in quarto. it will include core-js-2.5.3 which cause these grunt problems.I'm not sure why it happened, But to solve this issue change
reactable
to other table package.For me, I changed
reactable
intoknitr::kable
.Hope this helpful.