Skip to content

Commit

Permalink
chore(gatsby): fix domready package to be compatible with ie10 (#13027)
Browse files Browse the repository at this point in the history
* changed domready package to domready-loaded which is compatible with ie10

* updated domready to @mikaelkristiansson/domready

* updated packages/gatsby to use @mikaelkristiansson/domready
  • Loading branch information
mikaelkristiansson authored and wardpeet committed Apr 2, 2019
1 parent 1bd15b4 commit 6a221c2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/gatsby/cache-dir/app.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react"
import ReactDOM from "react-dom"
import domReady from "domready"
import domReady from "@mikaelkristiansson/domready"

import socketIo from "./socketIo"
import emitter from "./emitter"
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby/cache-dir/production-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import ReactDOM from "react-dom"
import { Router, navigate } from "@reach/router"
import { match } from "@reach/router/lib/utils"
import { ScrollContext } from "gatsby-react-router-scroll"
import domReady from "domready"
import domReady from "@mikaelkristiansson/domready"
import {
shouldUpdateScroll,
init as navigationInit,
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"del": "^3.0.0",
"detect-port": "^1.2.1",
"devcert-san": "^0.3.3",
"domready": "^1.0.8",
"@mikaelkristiansson/domready": "^1.0.9",
"dotenv": "^4.0.0",
"eslint": "^5.6.0",
"eslint-config-react-app": "^3.0.0",
Expand Down

0 comments on commit 6a221c2

Please sign in to comment.