- 18 Jun, 2017 1 commit
-
-
Roman authored
* Update README.md Fix broken link to React Router documentation * Update README.md
-
- 12 Jun, 2017 2 commits
-
-
Khang Lu authored
- Call `npm run flow --init` won't create a .flowconfig file, it should be `npm run flow init`
-
Michael Shilman authored
-
- 08 Jun, 2017 1 commit
-
-
Alexandre Nicastro authored
-
- 04 Jun, 2017 1 commit
-
-
Norbert de Langen authored
* re-add storybook && update the documentation and links * Change to new documentation domain
-
- 02 Jun, 2017 1 commit
-
-
Ryan Sullivan authored
Removed Node v4 (CRA only supports Node >= 6)
-
- 31 May, 2017 1 commit
-
-
Rustem Kakimov authored
"ensuring that you web app" -> "ensuring that your web app"
-
- 29 May, 2017 1 commit
-
-
Lufty Wiranda authored
since CRA now use the latest version of Jest under the hood, `jest-enzyme` v3.2.0 is now working perfectly fine
-
- 26 May, 2017 1 commit
-
-
Mirza Joldic authored
Simplified steps for deploying app to `now` as a static site. No need to `serve` script in `package.json` file. As of May 15, 2017, all static deployments on `now` are free and unlimited.
-
- 24 May, 2017 1 commit
-
-
Dan Abramov authored
-
- 20 May, 2017 1 commit
-
-
Dan Abramov authored
* Disable host check if you don't use proxy * Add a way to opt out and document it
-
- 19 May, 2017 7 commits
-
-
Dan Abramov authored
-
Enguerran authored
s/adding-images-and-fonts/adding-images-fonts-and-files/
-
Kelly authored
* update readme with example of include path * Update README.md
-
Dan Abramov authored
* Hide React Storybook from the User Guide while it's incompatible * Update README.md
-
Alexander James Phillips authored
* Correct which .env. files are referenced in docs * Highlight this is not available until 1.0.0 * Formatting * Update README.md * Update README.md
-
Tharaka Wijebandara authored
* Add documentation about using code splitting * Revise docs a bit * Update README.md * Update README.md * Update README.md
-
Joe Haddad authored
* Uncomment merged PRs * Switch to br * Update some webpack links * Add a little about section for PWA * oops * fast on subsequent visits * Add manual proxy config instructions * hint package.json * Change to js for comments * Tune wording
-
- 17 May, 2017 1 commit
-
-
Jeffrey Posnick authored
* sw-precache-webpack-plugin, SW registration, manifest.json * Documentation + a few SW tweaks. * Added an unregister method, too, just in case. * More info for the READMEs. * Add minify to SWPrecacheWebpackPlugin config * Fix SWPrecacheWebpackPlugin typo * Fix file references in READMEmd * Add instructions for testing service-worker locally * Review feedback * Some additional PWA metadata * Use sw-precache-webpack-plugin v0.9.1 for node >=4.0.0 support * Review feedback. * Add manifest.json context in a comment. * Fix typo * Downgrade to sw-precache-webpack-plugin 0.9.1 * Hide changes in README until 1.0 * Hide changes in User Guide until 1.0 * Hide more docs
-
- 16 May, 2017 1 commit
-
-
Dan Abramov authored
* Ignore Moment.js locales by default * Update README.md
-
- 15 May, 2017 1 commit
-
-
Gabriel Aumala authored
* Support node scripts in BROWSER Modify OpenBrowser.js to run node scripts specified with the BROWSER environment variable . If the value of the BROWSER environment variable ends with '.js' a child process is spawned to execute the script with node.js. Any arguments passed to npm start are also passed to this script, as well as the url where the app is served. The command executed in the child process is: node <pathToScript> [OPTIONS] <url> Update User Guide. * Tweak code style * Pin dep * Comment out 0.10 docs
-
- 12 May, 2017 3 commits
-
-
Cesar Varela authored
-
Valerii Sorokobatko authored
* support different env configs. * fomrat code * Hide doc * Slightly rework the PR * Remove .env in default template * Use just one entry in the paths * Unify env.js and loadEnv.js * Oops, forgot these folks
-
Kelly authored
* update readme with fix from https://github.com/facebookincubator/create-react-app/issues/1939 * update with better globbing * added note * updating with a note and reverting previous changes * how about this? * refactor * added note about new files back in after verifying locally * spaces back in, sorry was my editor! * removed note about new files :) * added bullet about new files issue currently open on node-sass
-
- 04 May, 2017 1 commit
-
-
Scott Ranger authored
-
- 02 May, 2017 1 commit
-
-
David Ascher authored
* Fix instructions for serving with now Not sure if new, but the `--single` flag is now important. * Keep it shorter
-
- 01 May, 2017 2 commits
-
-
Lufty Wiranda authored
* Update README.md * Update README.md
-
Dan Abramov authored
* Suggest to create .eslintrc for IDE lint plugins * Update README.md * Update README.md
-
- 25 Apr, 2017 1 commit
-
-
Ben Pickles authored
-
- 22 Apr, 2017 1 commit
-
-
Michael Wayman authored
* resolves facebookincubator/create-react-app#1986 updates CSS Preprocessor docs to include information on node-sass-chokidar alternative to node-sass * Update README.md
-
- 19 Apr, 2017 1 commit
-
-
Igor Ramos authored
* Node.js serving with absolute path It’s safer to use the absolute path of the directory that you want to serve, in case you run the express app from another directory. * Update README.md
-
- 14 Apr, 2017 1 commit
-
-
Joseph Race authored
-
- 09 Apr, 2017 1 commit
-
-
Dan Abramov authored
-
- 21 Mar, 2017 1 commit
-
-
Stoicescu Cristi authored
* Removed blockquote from code section * Fix the fix
-
- 18 Mar, 2017 1 commit
-
-
Dan Abramov authored
-
- 08 Mar, 2017 1 commit
-
-
Leo Lamprecht authored
* Suggest `serve` for serving the `build` directory * How to handle it with Node in prod (or other platforms) * Pretty newline added * Adjusted default port of static server * Remove `open` command from output * Removed constant assignment * Better explanation for not using having to use a static server * Cute newline added * Style nits
-
- 07 Mar, 2017 2 commits
-
-
Andres Suarez authored
[skip ci]
-
Rory Hunter authored
* Whitelist files that can be embedded through url-loader Change the current catch-all loader to use file-loader instead of url-loader, and exclude common image file extensons. Add another url-loader for images, configured identically to the original catch-all loader. Part of issue #1293. * Update tests to reflect change in loader config * Integration test fix * More CI fixes * Work around broken loader-utils behaviour in integration tests * Revise the documentation around file loading * Documentation tweaks * Docs tweak * Update test now that webpack/loader-utils has been updated * Update react-scripts to depend on babel-loader@7.0.0-alpha.2 * Bump deps
-
- 05 Mar, 2017 2 commits
-
-
Bond authored
* Bump jsx-a11y version * Update package dependecy for jsx-a11y * Bump version in react-scripts
-
Ryan Platte authored
* Update now.sh deployment instructions. Incorporates changes announced at https://zeit.co/blog/now-static that streamline Now deployments from CRA projects. * Remove unintentional reference to deployed app. No emergency; just didn't intend to tout or send traffic to my prototype.
-