-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
core(stacks): match against js-lib-detector with id property #9888
core(stacks): match against js-lib-detector with id property #9888
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
works for me, thanks!
@@ -53,6 +55,7 @@ async function detectLibraries() { | |||
const result = await lib.test(window); | |||
if (result) { | |||
libraries.push({ | |||
id: lib.id, | |||
name: name, | |||
icon: lib.icon, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can drop icon
from here now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated 👍
@housseindjirdeh you got a few failures in CI can you run yarn to update the lockfile? also can you update the PR title? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM2
can you run yarn to update the lockfile?
yeah, looks like a yarn
should fix things, and the smoke test will need to be updated to use the new ids
Updated (both the lockfile and smoke test with the new id) |
Bugfix: #9881