10 questions
0
votes
0
answers
28
views
I'm doing mono repo setup for my existing react apps using yarn workspaces and CRA, but build code not converted to ES5 to support chrome 38
It seems after build my react app works well in chrome 38 version. But, after moving to mono repo structure, same code not working in chrome 38 after build and looks like some part for code I see not ...
1
vote
0
answers
235
views
Upgarding react-scripts from v4 to v5 gives strange error Module build failed (from ../node_modules/babel-loader/lib/index.js)
I am using CRA and when upgrading react-scripts from v4.0.3 to v5.0.1 I get this strange error
Module build failed (from ../node_modules/babel-loader/lib/index.js):
TypeError: SOME_FILE_IN_THE_PROJECT....
2
votes
1
answer
552
views
Standard way to add custom react-scripts in create-react-app
I have a project created from create-react-app and is in typescript, I want to add suport for custom react-scripts without eject so what would be the best way to do it.
3
votes
2
answers
998
views
Fork and install Create React App without publishing on NPM
I would like to fork Facebook's Create React Repo and use it as a dependency instead of their own react-scripts. All tutorials on the subject publish the forked repo to NPM to install via the normal ...
0
votes
1
answer
532
views
CSS Modules don't return class
I would like to install css modules into create-react-app and I came across this https://github.com/kitze/custom-react-scripts.
After setting things up, I created a test style.module.css file in my ...