Description
Is this a bug report?
Yes, although it's highly probable that I've done something stupid.
For the record everything was working yesterday, and today it's not. Today I added redux, react-redux, and redux-thunk, which may have (but probably didn't) caused this issue. I removed them, and did multiple dependency resets, but to no avail.
My main issue is that I cannot determine how to resolve the dependency issue described in the form below, which seems to be that there are two (different) versions of babel-loader being loaded.
When I add SKIP_PREFLIGHT_CHECK=true
in .env
, I get a different error:
Error: Cannot find module 'fork-ts-checker-webpack-plugin'
running npm ls fork-ts-checker-webpack-plugin
returns empty
, and I believe this is a dependency of react-scripts.
I did a look-see in the yarn-lock and found the following entry for an alt
version, and this is where I'm pretty much stuck trying to figure this out, as I don't want to proceed to start trying to manually add dependencies willy-nilly.
fork-ts-checker-webpack-plugin-alt@0.4.14:
version "0.4.14"
resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin-alt/-/fork-ts-checker-webpack-plugin-alt-0.4.14.tgz#1bd6c0d97b7d4682dde61255fcbd78b72f7473a0"
integrity sha512-s0wjOBuPdylMRBzZ4yO8LSJuzem3g0MYZFxsjRXrFDQyL5KJBVSq30+GoHM/t/r2CRU4tI6zi04sq6OXK0UYnw==
dependencies:
babel-code-frame "^6.22.0"
chalk "^2.4.1"
chokidar "^2.0.4"
lodash "^4.17.11"
micromatch "^3.1.10"
minimatch "^3.0.4"
resolve "^1.5.0"
tapable "^1.0.0"
Did you try recovering your dependencies?
I've done this several times before submitting this issue.
Yarn version 1.13.0
FYI: yarn is what I usually use, and I know not to mix package managers; however, in troubleshooting this issue, I've also done dependency resets and tried to re-install with npm version 6.7.0
Which terms did you search for in User Guide?
(Write your answer here if relevant.)
Environment
Environment Info:
System:
OS: Linux 4.4 Ubuntu 18.04.1 LTS (Bionic Beaver)
CPU: x64 Intel(R) Core(TM) i7-7700 CPU @ 3.60GHz
Binaries:
Node: 10.13.0 - ~/.nvm/versions/node/v10.13.0/bin/node
Yarn: 1.13.0 - ~/.yarn/bin/yarn
npm: 6.7.0 - ~/.nvm/versions/node/v10.13.0/bin/npm
npmPackages:
react: ^16.7.0 => 16.8.1
react-dom: ^16.7.0 => 16.8.1
react-scripts: 2.1.3 => 2.1.3
npmGlobalPackages:
create-react-app: 2.1.3
Steps to Reproduce
(Write your steps here:)
- delete node_modules
- delete yarn.lock
- run "yarn"
- run "yarn start"
I've actually tried the above with npm as well, like this:
- delete node_modules
- delete package.lock.json
- run "npm install"
- run "npm run start"
Expected Behavior
The app should run...
Actual Behavior
After a dependency reset using yarn, yarn start
errors out with the below. Note that this does not show when pre-flight check is skipped (in .env), and it goes straight to the fork-ts-checker-webpack-plugin error
as shown in the npm error (shown after this):
The react-scripts package provided by Create React App requires a dependency:
"babel-loader": "8.0.4"
The command exits with the following:
error Command failed with exit code 1.
When I enter npm ls babel-loader
, I get:
└─┬ react-scripts@2.1.3
├── babel-loader@8.0.4
└─┬ babel-preset-react-app@7.0.1
└── babel-loader@8.0.5
After a dependency reset with npm, npm run start
errors out with the below:
Error: Cannot find module 'fork-ts-checker-webpack-plugin'
Reproducible Demo
(Paste the link to an example project and exact instructions to reproduce the issue.)