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

@reshadow/core

Package Overview
Dependencies
Maintainers
2
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@reshadow/core - npm Package Compare versions

Comparing version 0.0.1-alpha.71 to 0.0.1-alpha.74

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [0.0.1-alpha.74](https://github.com/lttb/reshadow/compare/v0.0.1-alpha.73...v0.0.1-alpha.74) (2020-02-11)
**Note:** Version bump only for package @reshadow/core
## [0.0.1-alpha.71](https://github.com/lttb/reshadow/compare/v0.0.1-alpha.70...v0.0.1-alpha.71) (2019-10-24)

@@ -8,0 +16,0 @@

13

index.js

@@ -117,2 +117,6 @@ "use strict";

var appendChildToDocumentHead = function appendChildToDocumentHead(element) {
return document.head.appendChild(element);
};
var css = function css(code, hash) {

@@ -131,3 +135,10 @@ var id = "reshadow-".concat(hash);

container.id = RESHADOW_ID;
document.head.appendChild(container);
if (document.head) {
appendChildToDocumentHead(container);
} else {
document.addEventListener('DOMContentLoaded', function () {
appendChildToDocumentHead(container);
});
}
}

@@ -134,0 +145,0 @@

2

package.json
{
"name": "@reshadow/core",
"version": "0.0.1-alpha.71",
"version": "0.0.1-alpha.74",
"description": "reshadow core runtime",

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

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