Giter VIP home page Giter VIP logo

Comments (7)

quisido avatar quisido commented on June 18, 2024 3

I'm able to reproduce this. The use-force-update import is being returned by Webpack as a string (/path/to/some-file.cjs) instead of returning the actual module.

There is a bug report for this at facebook/create-react-app#11889 and a pull request to fix it at #12352.

Here are some solutions:

  • Downgrade react-scripts to ^4 until they resolve it in ^5.
  • Downgrade use-force-update to 1.0.8.
  • Install Craco and use this configuration.
  • Eject from react-scripts and update your Webpack config like this.
  • Use the commit in the pull request for your copy of react-scripts.

The easiest solution is likely to downgrade react-scripts. If you want the newest toys (who doesn't?), then locking use-force-update at 1.0.8 should work. It may be hard to patch your lock file manually, so depending on your package manager you can check out alternatives.

For NPM v8+:

package.json
{
  "overrides": {
    "use-force-update": "1.0.8"
  }
}

For Yarn1:

package.json
{
  "resolutions": {
    "use-force-update": "1.0.8"
  }
}

For Yarn2:

# .yarnrc.yml
packageExtensions:
  'reactn@*':
    dependencies:
      use-force-update: 1.0.8

The third best solution is probably CRACO, because it's easy to just delete the CRACO config file if you decide you don't want it anymore. It's also nice to just have that freedom to configure Webpack regardless.

I hope one of these work for you. I could "fix" it in the package itself, but that would require removing native ESM support, and I'm reluctant to think that to be the right choice. 😞

from reactn.

quisido avatar quisido commented on June 18, 2024 1

I'll look into this. Can you confirm if you are using React Native or is this a browser project?

from reactn.

jessesward avatar jessesward commented on June 18, 2024

I'll look into this. Can you confirm if you are using React Native or is this a browser project?

This is a browser project. Using React v18.2.0

from reactn.

ngobach avatar ngobach commented on June 18, 2024

It is reproducible with react-scripts@^5.

from reactn.

jessesward avatar jessesward commented on June 18, 2024

Thanks for looking into it!

For now I think I'll just lock use-force-update to 1.0.8. Seems to be the best option. Hopefully the webpack issue will get worked out soon.

from reactn.

ngobach avatar ngobach commented on June 18, 2024

I was upgrading react-scripts from ^4 to ^5 and use-force-update is the only library that broke the build. So I guess this library might be using something non-standard. I found this exports interesting but it could be the reason of breaking changes (from ^1.0.8).

{
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.cjs"
    }
  }
}

from reactn.

quisido avatar quisido commented on June 18, 2024

The reason is the cjs file extension, which is standard in newer versions of Node for packages that contain both CJS and ESM code. Others are experiencing it for other dependencies in the CRA bug report linked above.

It's true that not many dependencies use the CJS file extension. Not many dependencies vend both CJS and ESM builds.

from reactn.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.