kitze / custom-react-scripts

[DEPRECATED, use customize-cra] Allow custom config for create-react-app without ejecting
https://custom-react-scripts.netlify.com
MIT License
993 stars 97 forks source link

1.0.14 upgrade #115

Open tim-field opened 6 years ago

tim-field commented 6 years ago

Hi, thanks for your work on this, do you have plans to update to the react-scripts version ( currently 1.0.14 )

aislanmaia commented 6 years ago

For now, it is 1.0.16 the latest version.

webmobiles commented 6 years ago

I've thought last was 1.0.15, readme of custom-react-scripts at the top says 'Latest version of original react-scripts: 1.0.11' ?

artursmirnov commented 6 years ago

It's 1.0.17 already

JohnAlbin commented 6 years ago

NPM shows that "custom-react-scripts 0.2.1 is the latest of 27 releases".

https://www.npmjs.com/package/custom-react-scripts

I think we need to publish the most recent version of this package to npm.

JohnAlbin commented 6 years ago

BTW, the normal work-around of using the github url directly (to get the latest unpublished package) instead of the npm name doesn't work because there is no "name" in package.json.

> create-react-app demo --scripts-version kitze/custom-react-scripts
Installing react, react-dom, and kitze/custom-react-scripts...
error Package "undefined@undefined" doesn't have a "name".
> yarn add kitze/custom-react-scripts
error Package "undefined@undefined" doesn't have a "name".

Why does custom-react-scripts's package.json not have a "name"? And why does it have a "private": true? Ah. I see that is how the original file looks and has nothing to do with this fork. :-\ https://github.com/facebookincubator/create-react-app/blob/master/package.json

vsanthanam commented 6 years ago

any plans to get the latest version of react-scripts into this repo?

kitze commented 6 years ago

@vsanthanam PR is welcome :)

vsanthanam commented 6 years ago

My knowledge of such things is practically zero — but I’ll give it a try!

kitze commented 6 years ago

@vsanthanam There is a new 2.0 release coming soon so I might release with that one ..

vsanthanam commented 6 years ago

:O awesome!

the current release has this super annoying bug which causes warnings to be thrown up in jest when using react 16.0+. I believe the fixed it in later versions of react-scripts, or at least that's what I gathered from the thread on the issue tracker.

I love this repo -- easiest way to add less.js to a create-react-app that I could find. Thanks for helping beginners like me do cool things!