Socket
Socket
Sign inDemoInstall

@shopify/react-html

Package Overview
Dependencies
Maintainers
12
Versions
191
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@shopify/react-html - npm Package Compare versions

Comparing version 7.0.1 to 7.1.0

28

CHANGELOG.md

@@ -11,8 +11,34 @@ # Changelog

## Unreleased
<!-- ## Unreleased -->
## 7.1.0 - 2019-02-20
### Changed
- Changed body styles from `display: none` to `visisbility: hidden` while page loads in development. [#515](https://github.com/Shopify/quilt/pull/515)
## 7.0.1 - 2019-02-07
No changes
## 7.0.0 - 2019-02-04
### Changed
- Updated `@shopify/react-effect` to the newest version. While this should not have any breaking changes on consumers of this library, it does require you to update your use of `@shopify/react-effect`’s `extract` function to the latest version, which _is_ a breaking change. [#477](https://github.com/Shopify/quilt/pull/477)
## 6.2.0 - 2019-01-29
### Added
- Added metadata components: `AppleHomeScreen` and `Responsive`. [#481](https://github.com/Shopify/quilt/pull/481)
## 6.1.0 - 2019-01-24
### Added
- Added a `<Preconnect />` component, which deprecates `@shopify/react-preconnect`. [#479](https://github.com/Shopify/quilt/pull/479)
## 6.0.2 - 2019-01-09
- Start of Changelog

2

dist/server/components/Html.js

@@ -48,3 +48,3 @@ "use strict";

// eslint-disable-next-line no-process-env
process.env.NODE_ENV === 'development' ? { display: 'none' } : undefined;
process.env.NODE_ENV === 'development' ? { visibility: 'hidden' } : undefined;
var faviconMarkup = favicon ? React.createElement(components_1.Favicon, { source: favicon }) : null;

@@ -51,0 +51,0 @@ return (React.createElement("html", { lang: locale },

@@ -56,3 +56,3 @@ "use strict";

setTimeout(function () {
document.body.style.display = '';
document.body.style.visibility = '';
resolve();

@@ -59,0 +59,0 @@ }, 0);

{
"name": "@shopify/react-html",
"version": "7.0.1",
"version": "7.1.0",
"license": "MIT",

@@ -5,0 +5,0 @@ "description": "A component to render your react app with no static HTML.",

@@ -51,3 +51,3 @@ export const SERIALIZE_ATTRIBUTE = 'data-serialized-id';

setTimeout(() => {
document.body.style.display = '';
document.body.style.visibility = '';
resolve();

@@ -54,0 +54,0 @@ }, 0);

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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