question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

An in-range update of babel7 is breaking the build 🚨

See original GitHub issue

There have been updates to the babel7 monorepo:

    • The devDependency @babel/core was updated from 7.3.4 to 7.4.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

This monorepo update includes releases of one or more dependencies which all belong to the babel7 group definition.

babel7 is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • ci/circleci: install-dependencies: Your tests failed on CircleCI (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Reactions:1
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
deklanwcommented, May 28, 2019

@kryops That worked for me although I’m now getting this upon installing new packages

warning Pattern ["core-js@^3.0.0"] is trying to unpack in the same destination "C:\\Users\\deklan\\AppData\\Local\\Yarn\\Cache\\v4\\npm-core-js3-3.1.3-95700bca5f248f5f78c0ec63e784eca663ec4138\\node_modules\\core-js3" as pattern ["core-js3@npm:core-js@latest"]. This could result in non-deterministic behavior, skipping.
1reaction
kryopscommented, Mar 23, 2019

Here’s a workaround to use core-js@3 in a yarn+webpack project:

  1. In your package.json, leave the core-js dependency at version 2, but add an alias dependency for version 3:
"core-js": "^2.6.1",
"core-js3": "npm:core-js@^3.0.0",
  1. In your webpack configuration, add the corresponding alias:
resolve: {
  alias: {
    'core-js': 'core-js3',
  },
},
  1. In your Babel configuration, set corejs: 3 in the options for @babel/preset-env

This way, your webpack build will use core-js 3, while the linaria loader still gets version 2 (which it should really add as a dependency 😉)

Read more comments on GitHub >

github_iconTop Results From Across the Web

An in-range update of babel7 is breaking the build 🚨 #303
🚨 View failing branch. This version is covered by your current version range and after updating it in your project the build failed....
Read more >
Upgrade to Babel 7
Because not every breaking change will affect every project, we've sorted the sections by the likelihood of a change breaking tests when upgrading....
Read more >
babel-plugin-filter-imports | Yarn - Package Manager
An in-range update of babel7 is breaking the build 🚨 #44. Merged pull requests: chore(package): bump all dependencies #54 (layershifter); Add Greenkeeper badge ......
Read more >
feathers-mongodb/CHANGELOG.md - UNPKG
13, - An in-range update of @feathersjs/adapter-commons is breaking the build 🚨 [\#172](https://github.com/feathersjs-ecosystem/feathers-mongodb/issues/172 ...
Read more >
nashdev - Bountysource
Version 4.9.3 of node-sass was just published. · Community · Fixes · An in-range update of babel-plugin-transform-react-remove-prop-types is breaking the build 🚨 ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found