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.

Dependency not found: @babel/runtime/helpers/builtin/objectWithoutPropertiesLoose

See original GitHub issue

I’m seeing the following behaviour with v0.26.0.

If I revert to v0.25.1, all is well.


* @babel/runtime/helpers/builtin/objectWithoutPropertiesLoose in ./node_modules/yup/lib/Lazy.js, ./node_modules/yup/lib/util/runValidations.js and 1 other

To install it, you can run: npm install --save @babel/runtime/helpers/builtin/objectWithoutPropertiesLoose

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Reactions:29
  • Comments:18 (9 by maintainers)

github_iconTop GitHub Comments

9reactions
gforgecommented, Aug 4, 2018

None of above worked for me.The issue seems to be that the builtin folter has moved to the parent folder helpers. To resolve this I needed to create the folder and copy content of parent into that folder:

cd <project root>
mkdir node_modules/@babel/runtime/helpers/builtin
cp node_modules/@babel/runtime/helpers/* node_modules/@babel/runtime/helpers/builtin/

Fix found on the forum: https://forums.meteor.com/t/error-cannot-find-module-babel-runtime-helpers-builtin-interoprequiredefault/44944/9

This seems to be a beta-issue, hopefully babel will move into RC so that this can be fixed.

5reactions
MufassirShawcommented, Aug 5, 2018

GUI version of what @gforge said:

So all you need to do is go to @babel/runtime/helper copy all the content and paste it inside of a folder that should be named builtin. And you have got it fixed (at least mine was).

Read more comments on GitHub >

github_iconTop Results From Across the Web

Maven dependency not found - Stack Overflow
I think the problem is not IntelliJ, I think maven can not download the dependencies, so you can try to force the dependencies...
Read more >
Intellij not resolving maven dependencies
I am using intellij to build my maven project. the project build successfully and run the problem is that intellij is not resolving...
Read more >
Dependency not found, works in maven - Gradle Forums
I'm having some trouble adding this library as a dependency in gradle: https://bitbucket.org/JamMaster/commandler/overview, it works it I try to add it in a ......
Read more >
Maven – Optional Dependencies and Dependency Exclusions
Suppose you don't want project D and its dependencies to be added to Project A's classpath because some of Project-D's dependencies are missing...
Read more >
Dependency Scanning - GitLab Docs
Dependency Scanning automatically detects the languages used in the repository. All analyzers matching the detected languages are run. There is usually no need ......
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