Skip to content
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

[v2] Error: Cannot find module 'core-js/modules/es6.array.filter' #7862

Closed
endymion1818 opened this issue Sep 4, 2018 · 26 comments · Fixed by maxpou/gatsby-starter-morning-dew#29

Comments

@endymion1818
Copy link
Contributor

Description

gatsby develop returns the above error

Steps to reproduce

I upgraded a site from v2 to v2 by copying my dependencies, modules & pages over and following the guide here: https://next.gatsbyjs.org/docs/migrating-from-v1-to-v2/

Environment

  System:
    OS: macOS High Sierra 10.13.6
    CPU: x64 Intel(R) Core(TM) i7-4770HQ CPU @ 2.20GHz
    Shell: 5.3 - /bin/zsh
  Binaries:
    Node: 8.11.3 - /usr/local/bin/node
    Yarn: 1.7.0 - /usr/local/bin/yarn
    npm: 6.4.0 - /usr/local/bin/npm
  Browsers:
    Chrome: 68.0.3440.106
    Safari: 11.1.2
  npmPackages:
    gatsby: 2.0.0-rc.9 => 2.0.0-rc.9 
    gatsby-plugin-canonical-urls: ^2.0.0-rc.1 => 2.0.0-rc.1 
    gatsby-plugin-google-tagmanager: ^2.0.0-rc.1 => 2.0.0-rc.1 
    gatsby-plugin-manifest: next => 2.0.2-rc.1 
    gatsby-plugin-offline: next => 2.0.0-rc.2 
    gatsby-plugin-react-helmet: ^3.0.0-rc.1 => 3.0.0-rc.1 
    gatsby-plugin-remove-trailing-slashes: ^2.0.0-rc.1 => 2.0.0-rc.1 
    gatsby-plugin-robots-txt: ^1.3.0 => 1.3.0 
    gatsby-plugin-sitemap: ^2.0.0-rc.1 => 2.0.0-rc.1 
    gatsby-plugin-styled-components: ^3.0.0-rc.1 => 3.0.0-rc.1 
    gatsby-source-apiserver: ^1.3.1 => 1.3.1 
    gatsby-source-filesystem: ^2.0.1-rc.1 => 2.0.1-rc.1 
    gatsby-source-wordpress: ^3.0.0-rc.1 => 3.0.0-rc.1 
    gatsby-transformer-javascript-frontmatter: ^2.0.0-rc.2 => 2.0.0-rc.2 
    gatsby-transformer-json: ^2.1.1-rc.1 => 2.1.1-rc.1 
  npmGlobalPackages:
    gatsby-cli: 1.1.58

I've tried installing babel-preset-env and deleting node_modules & reinstalling.

@pieh pieh added the status: needs more info Needs triaging and reproducible examples or more information to be resolved label Sep 4, 2018
@pieh
Copy link
Contributor

pieh commented Sep 4, 2018

Can you try deleting lock files (yarn.lock / package-lock.json) and node_modules and reinstalling again?

@endymion1818
Copy link
Contributor Author

Thanks Pieh yeah tried that, no go I'm afraid.

I did actually just fix this by running npm install --save core-js

@kakadiadarpan
Copy link
Contributor

kakadiadarpan commented Sep 4, 2018

Awesome!

@pieh
Copy link
Contributor

pieh commented Sep 4, 2018

Do you have still have full error output (with stack trace)? It would be good to get that fixed if this is gatsby related and not problem with one of 3rd part packages?

@kakadiadarpan kakadiadarpan reopened this Sep 4, 2018
@krismorf
Copy link
Contributor

krismorf commented Sep 4, 2018

Pieh I had the same issue and I pinpointed it to babel removing the core-js dependency in their 7.0.0 beta versions, before they put it up again in their final version.

@alvis
Copy link
Contributor

alvis commented Sep 4, 2018

@kmorf good found! I have got the same issue too.

@pieh
Copy link
Contributor

pieh commented Sep 4, 2018

Pieh I had the same issue and I pinpointed it to babel removing the core-js dependency in their 7.0.0 beta versions, before they put it up again in their final version.

Right, this isn't something that gatsby can fix right?

Also does this error happens in node or in browser? Definitely need more info here, to know if this is something that actually should be issue here or something that happened upstream that we have no control over :/

@krismorf
Copy link
Contributor

krismorf commented Sep 4, 2018

I don't think gatsby should attempt to fix this. There were a lot of different React projects failing when this was happening so users added core-js to their devDependencies. I haven't had this issue since babel 7.0.0 was released.

@pieh
Copy link
Contributor

pieh commented Sep 4, 2018

Let's close this for now then (again :) )

@pieh pieh closed this as completed Sep 4, 2018
@kakadiadarpan kakadiadarpan removed the status: needs more info Needs triaging and reproducible examples or more information to be resolved label Sep 5, 2018
@krismorf
Copy link
Contributor

krismorf commented Sep 5, 2018

I run into the issue again just now. I'm attaching a commit on my gatsby-node.js. I think I got the error when I used _.each instead of .forEach.

screen shot 2018-09-05 at 6 42 24 pm

@arcticicestudio
Copy link

I'm also affected by this problem and I think it can be led back to the Babel 7 changes for the @babel/polyfill package. Also see mdx-js/mdx#271 for a detailed description of my current analyse. Currently the only workaround to get rid of this is to add @babel/polyfill as dev dependency which, like described in the migration guide linked above, is now more or less just a proxy for the core-js v2 package.

@secretfader
Copy link

secretfader commented Sep 23, 2018

I'm seeing this issue as well, and can confirm that a recent change in Babel is what broke the build. Now investigating how this can be fixed in Gatsby. (Adding core-js to devDependencies did nothing for the build that I can tell.)

@arcticicestudio
Copy link

@secretfader You can add @babel/polyfill to your devDependencies, it'll automatically load necessary core-js polyfills. Make sure to delete your node_modules folder and possibly your package-lock.json file and run npm install to start with a clean resolved dependency tree.

@oliviertassinari
Copy link
Contributor

I can reproduce the issue. If you are looking for a reproduction repository, https://github.com/mui-org/material-ui/blob/master/examples/gatsby/README.md is a good one.

@ben-rogerson
Copy link
Contributor

@secretfader You can add @babel/polyfill to your devDependencies, it'll automatically load necessary core-js polyfills. Make sure to delete your node_modules folder and possibly your package-lock.json file and run npm install to start with a clean resolved dependency tree.

Adding "@babel/polyfill": "^7.0.0", and following those instructions didn't work for me.
Adding core-js did work npm install --save core-js.

@arcticicestudio
Copy link

@ben-rogerson I should have updated my comment, because the error occurred again after I removed my package-lock.json. It looks like the dependencies haven't been resolved correctly, but ironically it worked after doing so. Sometimes npm is a mystery of rainbow unicorns 🙄 Also in mdx-js/mdx#271 the maintainer posted it didn't worked with npm, but when using yarn everything run fine.

I'll play around with the results when adding core-js or @babel/polyfill as dependency, but I'm curious why it works afterwards since core-js is already resolved through gatsby and without explicitly importing the polyfill in the code I don't see any difference between the devDependencies solution.

@cpboyd
Copy link
Contributor

cpboyd commented Nov 7, 2018

Just an FYI, but I recently switched from Yarn to NPM on one of my Gatsby sites and had this issue.

As @arcticicestudio states, it seems especially strange given that gatsby lists core-js as a dependency.

@nickensoul
Copy link

Additional info: after cleaning up .cache, node_modules and package-lock.json andinstalling modules again via npm I got
WebpackError: Cannot find module 'core-js/modules/es6.array.sort'
Installing core-js directly fixes issue.

@aa-ziyi
Copy link

aa-ziyi commented Apr 15, 2019

yarn add core-js
如果还不行
删除 node_modules,然后使用 yarn 安装,不要使用 cnpm 安装;

gaurav added a commit to phyloref/open-tree-resolver that referenced this issue Apr 17, 2019
gaurav added a commit to phyloref/open-tree-resolver that referenced this issue Apr 17, 2019
@alexlafroscia
Copy link
Contributor

I'm running into this problem as well.

Originally I was running Storybook version 5.1.0-alpha.X. If I run yarn why core-js the dominant version of core-js(the one hoisted to core-js) is 2.6.5.

After updating to Storybook 5.1.0-beta.0 today, the hoisted version of core-js became 3.0.1, and for some reason, that broke the Gatsby build.

Why doesn't Gatsby resolve the actual version of core-js from its dependencies?

I tried the workaround of adding core-js to my devDependencies directly but that did not solve the problem.

@thetrevoradams
Copy link

I had the same issue.

Downgrading my core-js version to 2.6.5 (dev-dependency) fixed it.

@anonyco
Copy link

anonyco commented Aug 23, 2019

npm install --save core-js no longer works.

Use npm install --save --dev [email protected] instead.

However, try running npm install --dev [email protected] in the project's directory so that you do not save it globally.

@mirsad02
Copy link

mirsad02 commented Aug 31, 2019

If the previous doesn't work, use:

npm install --save [email protected] -g

This works but don't do it

I assume, the cause of this problem was that I've used npm to update and work on a project that was initially started with yarn. Hence the mess up. Like arcticicestudio pointed out.*

@arcticicestudio
Copy link

If the previous doesn't work, use:

npm install --save [email protected] -g

Installing such packages globally is a really bad idea and there's no reason to do so. If you’e having problems when installed locally (with pinned version), it might be because you've already installed other packages globally that causing conflicts now.
I guess the main problem of this ticket is npm. It seems like it doesn't resolve the dependency tree correct. I've switched to yarn last year (mainly because of workspaces) and never had problems again. I guess npm users need to use the workaround by pinning the version and hope that npm 8 (that'll be powered by their new tink lib, announced in their npm Roadmap Summer 2019 blog post) fixes such problems (or switch to yarn for Gatsby based projects).

lallaheeee added a commit to connect-foundation/2019-04 that referenced this issue Nov 26, 2019
`Cannot find module 'core-js/modules/es.function.bind` 에러 해결하려고
추가했습니다.

참고 사이트
gatsbyjs/gatsby#7862
dan-84 pushed a commit to dan-84/gatsby-materialui that referenced this issue Feb 12, 2020
dan-84 pushed a commit to dan-84/gatsby-plugin that referenced this issue Feb 12, 2020
@cillurzom
Copy link

Thanks Pieh yeah tried that, no go I'm afraid.

I did actually just fix this by running npm install --save core-js

Got it working thanks to this!

caycehouse pushed a commit to caycehouse/caycehouse.com that referenced this issue Apr 8, 2020
* Bumped Readme

* Stripped bootstrap and scss

* Fixed padding on index

* Moved Social Icons

* Fixed drawer footer

* Made sumojoe link safe

* Fixed lighthouse best practice

* Made Read More link more visible

* Fixed weird overlay for footer

* Added noscript tag

* Fixed PWA lighthouse score

* Added gatsby plugin netlify

* Added contact page

* Working on clock rewrite

* Removed Twitter from website

* Bumped packages

* Apply fix from gatsbyjs/gatsby#7862

* [Security] Bump acorn from 6.0.7 to 6.4.1

Bumps [acorn](https://github.com/acornjs/acorn) from 6.0.7 to 6.4.1. **This update includes security fixes.**
- [Release notes](https://github.com/acornjs/acorn/releases)
- [Commits](acornjs/acorn@6.0.7...6.4.1)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump @fortawesome/free-solid-svg-icons from 5.7.1 to 5.13.0

Bumps [@fortawesome/free-solid-svg-icons](https://github.com/FortAwesome/Font-Awesome) from 5.7.1 to 5.13.0.
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@5.7.1...5.13.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* [Security] Bump eslint-utils from 1.3.1 to 1.4.3

Bumps [eslint-utils](https://github.com/mysticatea/eslint-utils) from 1.3.1 to 1.4.3. **This update includes security fixes.**
- [Release notes](https://github.com/mysticatea/eslint-utils/releases)
- [Commits](mysticatea/eslint-utils@v1.3.1...v1.4.3)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump prettier from 1.16.4 to 2.0.4

Bumps [prettier](https://github.com/prettier/prettier) from 1.16.4 to 2.0.4.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/master/CHANGELOG.md)
- [Commits](prettier/prettier@1.16.4...2.0.4)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* [Security] Bump mixin-deep from 1.3.1 to 1.3.2

Bumps [mixin-deep](https://github.com/jonschlinkert/mixin-deep) from 1.3.1 to 1.3.2. **This update includes a security fix.**
- [Release notes](https://github.com/jonschlinkert/mixin-deep/releases)
- [Commits](jonschlinkert/mixin-deep@1.3.1...1.3.2)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-source-filesystem from 2.0.20 to 2.1.6

Bumps [gatsby-source-filesystem](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-source-filesystem) from 2.0.20 to 2.1.6.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-source-filesystem/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-source-filesystem)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Create auto-approve.yml

* Bump react from 16.7.0 to 16.13.1

Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react) from 16.7.0 to 16.13.1.
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/master/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v16.13.1/packages/react)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* [Security] Bump lodash from 4.17.11 to 4.17.13

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.13. **This update includes security fixes.**
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.11...4.17.13)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-remark-images from 3.0.3 to 3.2.2

Bumps [gatsby-remark-images](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-remark-images) from 3.0.3 to 3.2.2.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-remark-images/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-remark-images)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump react-helmet from 5.2.0 to 5.2.1

Bumps [react-helmet](https://github.com/nfl/react-helmet) from 5.2.0 to 5.2.1.
- [Release notes](https://github.com/nfl/react-helmet/releases)
- [Changelog](https://github.com/nfl/react-helmet/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nfl/react-helmet/commits)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-plugin-google-analytics from 2.0.13 to 2.2.2

Bumps [gatsby-plugin-google-analytics](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-google-analytics) from 2.0.13 to 2.2.2.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-google-analytics/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-google-analytics)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* [Security] Bump lodash.merge from 4.6.1 to 4.6.2

Bumps [lodash.merge](https://github.com/lodash/lodash) from 4.6.1 to 4.6.2. **This update includes a security fix.**
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/commits)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* [Security] Bump lodash.mergewith from 4.6.1 to 4.6.2

Bumps [lodash.mergewith](https://github.com/lodash/lodash) from 4.6.1 to 4.6.2. **This update includes a security fix.**
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/commits)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* [Security] Bump lodash.template from 4.4.0 to 4.5.0

Bumps [lodash.template](https://github.com/lodash/lodash) from 4.4.0 to 4.5.0. **This update includes a security fix.**
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.4.0...4.5.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump @material-ui/core from 3.9.2 to 3.9.4

Bumps [@material-ui/core](https://github.com/mui-org/material-ui/tree/HEAD/packages/material-ui) from 3.9.2 to 3.9.4.
- [Release notes](https://github.com/mui-org/material-ui/releases)
- [Changelog](https://github.com/mui-org/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui-org/material-ui/commits/v3.9.4/packages/material-ui)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-plugin-eslint from 2.0.4 to 2.0.5

Bumps [gatsby-plugin-eslint](https://github.com/mongkuen/gatsby-plugin-eslint) from 2.0.4 to 2.0.5.
- [Release notes](https://github.com/mongkuen/gatsby-plugin-eslint/releases)
- [Commits](https://github.com/mongkuen/gatsby-plugin-eslint/commits)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-transformer-sharp from 2.1.13 to 2.2.23

Bumps [gatsby-transformer-sharp](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-transformer-sharp) from 2.1.13 to 2.2.23.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-transformer-sharp/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-transformer-sharp)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-plugin-manifest from 2.0.17 to 2.0.29

Bumps [gatsby-plugin-manifest](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-manifest) from 2.0.17 to 2.0.29.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-manifest/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-manifest)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump lodash from 4.17.13 to 4.17.15

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.13 to 4.17.15.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.13...4.17.15)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump eslint-plugin-import from 2.16.0 to 2.20.2

Bumps [eslint-plugin-import](https://github.com/benmosher/eslint-plugin-import) from 2.16.0 to 2.20.2.
- [Release notes](https://github.com/benmosher/eslint-plugin-import/releases)
- [Changelog](https://github.com/benmosher/eslint-plugin-import/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.16.0...v2.20.2)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump @fortawesome/fontawesome-svg-core from 1.2.14 to 1.2.28

Bumps [@fortawesome/fontawesome-svg-core](https://github.com/FortAwesome/Font-Awesome) from 1.2.14 to 1.2.28.
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md)
- [Commits](https://github.com/FortAwesome/Font-Awesome/commits)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump babel-eslint from 10.0.1 to 10.1.0

Bumps [babel-eslint](https://github.com/babel/babel-eslint) from 10.0.1 to 10.1.0.
- [Release notes](https://github.com/babel/babel-eslint/releases)
- [Commits](babel/babel-eslint@v10.0.1...v10.1.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump react-konami-code from 1.4.0 to 1.4.3

Bumps [react-konami-code](https://github.com/vmarchesin/react-konami-code) from 1.4.0 to 1.4.3.
- [Release notes](https://github.com/vmarchesin/react-konami-code/releases)
- [Changelog](https://github.com/vmarchesin/react-konami-code/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vmarchesin/react-konami-code/commits)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-plugin-react-helmet from 3.0.6 to 3.2.1

Bumps [gatsby-plugin-react-helmet](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-react-helmet) from 3.0.6 to 3.2.1.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-react-helmet/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-react-helmet)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-transformer-remark from 2.2.4 to 2.6.5

Bumps [gatsby-transformer-remark](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-transformer-remark) from 2.2.4 to 2.6.5.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-transformer-remark/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-transformer-remark)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump eslint from 5.13.0 to 5.16.0

Bumps [eslint](https://github.com/eslint/eslint) from 5.13.0 to 5.16.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md)
- [Commits](eslint/eslint@v5.13.0...v5.16.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump @wapps/gatsby-plugin-material-ui from 1.2.0 to 1.2.1

Bumps [@wapps/gatsby-plugin-material-ui](https://github.com/hupe1980/gatsby-plugin-material-ui) from 1.2.0 to 1.2.1.
- [Release notes](https://github.com/hupe1980/gatsby-plugin-material-ui/releases)
- [Commits](https://github.com/hupe1980/gatsby-plugin-material-ui/commits)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump @fortawesome/free-brands-svg-icons from 5.7.1 to 5.13.0

Bumps [@fortawesome/free-brands-svg-icons](https://github.com/FortAwesome/Font-Awesome) from 5.7.1 to 5.13.0.
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@5.7.1...5.13.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump eslint-plugin-jsx-a11y from 6.2.1 to 6.2.3

Bumps [eslint-plugin-jsx-a11y](https://github.com/evcohen/eslint-plugin-jsx-a11y) from 6.2.1 to 6.2.3.
- [Release notes](https://github.com/evcohen/eslint-plugin-jsx-a11y/releases)
- [Changelog](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/CHANGELOG.md)
- [Commits](infofarmer/eslint-plugin-jsx-a11y@v6.2.1...v6.2.3)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-link from 2.0.10 to 2.3.2

Bumps [gatsby-link](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-link) from 2.0.10 to 2.3.2.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-link/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-link)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump react-dom from 16.7.0 to 16.13.1

Bumps [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) from 16.7.0 to 16.13.1.
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/master/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v16.13.1/packages/react-dom)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump eslint-plugin-react from 7.12.4 to 7.19.0

Bumps [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) from 7.12.4 to 7.19.0.
- [Release notes](https://github.com/yannickcr/eslint-plugin-react/releases)
- [Changelog](https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.12.4...v7.19.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump bluebird from 3.5.3 to 3.7.2

Bumps [bluebird](https://github.com/petkaantonov/bluebird) from 3.5.3 to 3.7.2.
- [Release notes](https://github.com/petkaantonov/bluebird/releases)
- [Commits](petkaantonov/bluebird@v3.5.3...v3.7.2)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-plugin-sharp from 2.0.20 to 2.5.4

Bumps [gatsby-plugin-sharp](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-sharp) from 2.0.20 to 2.5.4.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-sharp/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-sharp)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump prop-types from 15.6.2 to 15.7.2

Bumps [prop-types](https://github.com/facebook/prop-types) from 15.6.2 to 15.7.2.
- [Release notes](https://github.com/facebook/prop-types/releases)
- [Changelog](https://github.com/facebook/prop-types/blob/master/CHANGELOG.md)
- [Commits](facebook/prop-types@v15.6.2...v15.7.2)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-plugin-netlify from 2.0.8 to 2.2.1

Bumps [gatsby-plugin-netlify](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-netlify) from 2.0.8 to 2.2.1.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-netlify/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-netlify)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump @fortawesome/react-fontawesome from 0.1.4 to 0.1.9

Bumps [@fortawesome/react-fontawesome](https://github.com/FortAwesome/react-fontawesome) from 0.1.4 to 0.1.9.
- [Release notes](https://github.com/FortAwesome/react-fontawesome/releases)
- [Changelog](https://github.com/FortAwesome/react-fontawesome/blob/master/CHANGELOG.md)
- [Commits](FortAwesome/react-fontawesome@0.1.4...0.1.9)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-image from 2.0.29 to 2.3.2

Bumps [gatsby-image](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-image) from 2.0.29 to 2.3.2.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-image/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-image)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump core-js from 2.6.3 to 3.6.4

Bumps [core-js](https://github.com/zloirock/core-js) from 2.6.3 to 3.6.4.
- [Release notes](https://github.com/zloirock/core-js/releases)
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md)
- [Commits](zloirock/core-js@v2.6.3...v3.6.4)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump eslint-config-prettier from 3.6.0 to 6.10.1

Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 3.6.0 to 6.10.1.
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/master/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v3.6.0...v6.10.1)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-plugin-offline from 2.0.22 to 3.0.5

Bumps [gatsby-plugin-offline](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-offline) from 2.0.22 to 3.0.5.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-offline/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-offline)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump eslint-plugin-prettier from 3.0.1 to 3.1.2

Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) from 3.0.1 to 3.1.2.
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v3.0.1...v3.1.2)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby from 2.0.115 to 2.20.13

Bumps [gatsby](https://github.com/gatsbyjs/gatsby) from 2.0.115 to 2.20.13.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.20.13)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-source-filesystem from 2.1.6 to 2.2.2

Bumps [gatsby-source-filesystem](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-source-filesystem) from 2.1.6 to 2.2.2.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-source-filesystem/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-source-filesystem)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump eslint-config-airbnb from 17.1.0 to 18.1.0

Bumps [eslint-config-airbnb](https://github.com/airbnb/javascript) from 17.1.0 to 18.1.0.
- [Release notes](https://github.com/airbnb/javascript/releases)
- [Commits](airbnb/javascript@eslint-config-airbnb-v17.1.0...eslint-config-airbnb-v18.1.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby from 2.20.13 to 2.20.14

Bumps [gatsby](https://github.com/gatsbyjs/gatsby) from 2.20.13 to 2.20.14.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.20.14)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-plugin-offline from 3.0.5 to 3.1.2

Bumps [gatsby-plugin-offline](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-offline) from 3.0.5 to 3.1.2.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-offline/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-offline)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump @material-ui/core from 3.9.4 to 4.9.9

Bumps [@material-ui/core](https://github.com/mui-org/material-ui/tree/HEAD/packages/material-ui) from 3.9.4 to 4.9.9.
- [Release notes](https://github.com/mui-org/material-ui/releases)
- [Changelog](https://github.com/mui-org/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui-org/material-ui/commits/v4.9.9/packages/material-ui)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-transformer-sharp from 2.2.23 to 2.4.4

Bumps [gatsby-transformer-sharp](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-transformer-sharp) from 2.2.23 to 2.4.4.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-transformer-sharp/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-transformer-sharp)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-plugin-manifest from 2.0.29 to 2.3.3

Bumps [gatsby-plugin-manifest](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-manifest) from 2.0.29 to 2.3.3.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-manifest/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-manifest)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-plugin-sitemap from 2.0.5 to 2.3.1

Bumps [gatsby-plugin-sitemap](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-plugin-sitemap) from 2.0.5 to 2.3.1.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-sitemap/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-plugin-sitemap)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump gatsby-transformer-remark from 2.6.5 to 2.7.1

Bumps [gatsby-transformer-remark](https://github.com/gatsbyjs/gatsby/tree/HEAD/packages/gatsby-transformer-remark) from 2.6.5 to 2.7.1.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-transformer-remark/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-transformer-remark)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Create tests.yml

* Removed Travis CI

* Bump deps

* Linted JS

* Fixed Linting errors

* Update tests.yml

Co-authored-by: Cayce House <[email protected]>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
@MilosJo
Copy link

MilosJo commented Jan 11, 2022

@thetrevoradams solution worked for me as well.

Downgrading my core-js version to 2.6.5 (dev-dependency) fixed it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.