An in-range update of babel-loader is breaking the build 🚨
See original GitHub issueThe dependency babel-loader was updated from 8.0.2
to 8.0.3
.
This version is covered by your current version range and after updating it in your project the build failed.
babel-loader 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
Release Notes for v8.0.3
Features
- #687 - Add
customize
option
Bugs
- #685 - Also pass the caller option to loadPartialConfig
Docs
Internal
Some dev dependency updates and CI tweaks.
Commits
The new version differs by 12 commits.
800181b
8.0.3
7d8500c
Also pass the caller option to loadPartialConfig (#685)
a507914
Expose the full loader options to all overrides hooks.
ac0c869
Tweak the customize implementation to be a bit more strict.
9b70a02
Add overrides option
c8d7a72
Add .mjs to the examples (#683)
4619993
bable options link update (#681)
8f240b4
Use node 10 on appveyor
7e4189e
Change appveyor to use babel account
eeaee46
Update devDeps to use most recent versions, and fix tests.
3e5fb5e
chore(package): update lockfile
2b8e479
chore(package): update eslint-config-babel to version 8.0.0
See the full diff
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:
- Created 5 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
An in-range update of babel-loader is breaking the build 🚨 #410
The devDependency babel-loader was updated from 8.0.5 to 8.0.6. 🚨 View failing branch. This version is covered by your current version ...
Read more >Babel · The compiler for next generation JavaScript - Babel.js
While you can install Babel CLI globally on your machine, it's much better to install it locally project by project. There are two...
Read more >react-svg-loader - Bountysource
It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying...
Read more >How to fix a Babel/runtime/helper issue in Webpack 5?
Try rm -rf node_modules and npm install . Then resolve error one by one. There seems to be a problem with babel configuration....
Read more >How to combine Webpack 4 and Babel 7 to ... - freeCodeCamp
babel -loader: This is the loader that helps webpack compile .js files ... Babel introduced a breaking change (for the greater good, ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Maybe this could help: https://github.com/zeit/next.js/issues/5231 ?
Seems something like this.
Build Log says:
Module build failed (from ./node_modules/next/dist/build/webpack/loaders/next-babel-loader.js): ReferenceError: Unknown helper getPrototypeOf
and so forth. Seems a “next” config problem?
And I can normally build on this branch … Locally at least. Docker image is another story: I’ve got lots of imports unresolved:
import { getCodeSchoolsPromise } from '../common/constants/api';
this works but the original
import { getCodeSchoolsPromise } from 'common/constants/api';
fails to import…
Just give me a day to read into the code 😉
My babel config may be off now that babel 7 is being consumed by our biggest libraries.
Potentially may need something like this, but the Babel 7 way: https://github.com/zeit/next.js/issues/4291#issuecomment-398447718