Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@bolt/core

Package Overview
Dependencies
Maintainers
4
Versions
380
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bolt/core - npm Package Compare versions

Comparing version 0.9.6 to 0.10.1

11

index.js

@@ -15,1 +15,12 @@ // Export non-Bolt dependencies shared across virtually all components

export * from './polyfills/polyfill-loader';
// Util to recursively look to see if parent is a specific HTML tag
export function findParentTag(el, tag) {
while (el.parentNode) {
el = el.parentNode;
if (el.tagName === tag)
return el;
}
return null;
}

2

package.json
{
"name": "@bolt/core",
"description": "Core dependencies, utils, etc.",
"version": "0.9.6",
"version": "0.10.1",
"license": "MIT",

@@ -6,0 +6,0 @@ "main": "index.js",

@@ -20,3 +20,3 @@ /** @jsx h */

get renderRoot() {
if (hasNativeShadowDomSupport) {
if (hasNativeShadowDomSupport && this.useShadow === true) {
return super.renderRoot || shadow(this);

@@ -23,0 +23,0 @@ } else {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc