Alex Zherdev
c7c319e207
Webpack plugin to detect case mismatch in requires ( #266 )
2016-07-29 20:39:40 +01:00
Rafael Pedicini
5a0669a44b
Add note that router doesn't work with gh-pages ( #279 )
...
* Add note that router doesn't work with gh-pages
* Update note about using router with gh-pages
2016-07-29 20:34:59 +01:00
Joan Leon
bbce8038e1
Optimize logo.svg from template folder ( #281 )
2016-07-29 19:02:12 +01:00
Jose Vazquez
98ffaec662
generated project now includes .gitignore ( #280 )
2016-07-29 18:14:56 +01:00
Dan Abramov
f05cba5e29
Use /static paths for assets ( #278 )
...
* Use /static paths for assets
* Fix e2e test
2016-07-29 17:09:48 +01:00
Dallon Feldner
d2baa3c4dd
Symlink-friendly path resolution ( #277 )
...
* Symlink-friendly path resolution
I was having difficulties using a local copy of `react-scripts` and `npm link`ing it into a real world project. This change resolves paths relative to the current working directory (that is, most likely the directory of the app) rather than assuming a certain directory structure.
* Fix relative paths in post-eject case
because I'm an idiot
* Renamed resolveLib to resolveOwn
2016-07-29 17:09:40 +01:00
Konstantin Tarkus
19580a8b3c
Add react-app to Alternatives section in README.md ( #208 )
2016-07-29 14:41:08 +01:00
Dan Abramov
4d60f08656
Fix error logic in e2e script
...
I think this should solve #258
2016-07-29 11:31:27 +01:00
Dan Abramov
319d272791
Add missing changelog entry
2016-07-28 21:19:38 +01:00
Dan Abramov
a5e424fa20
Changelog for 0.2.0 ( #190 )
...
* Update CHANGELOG.md
* Update the changelog
* Update CHANGELOG.md
v0.2.0
2016-07-28 20:54:04 +01:00
Dan Abramov
7cf1edbc21
Add updating deps to release script
2016-07-28 20:46:33 +01:00
Dan Abramov
beed0ae894
0.2.0
2016-07-28 20:44:40 +01:00
Dan Abramov
2749026af3
Make filesize stats prettier ( #265 )
2016-07-28 20:43:49 +01:00
Konstantin Tarkus
dd6ec95cfe
Rename compressor field to compress in UglifyJsPlugin settings ( #264 )
2016-07-28 20:42:58 +01:00
Dan Abramov
fc32623fce
Replace eslint-plugin-flow-vars with eslint-plugin-flowtype
...
This is the one people are converging on, and flow-vars may get deprecated.
2016-07-28 19:55:48 +01:00
Dan Abramov
9dab8715d4
Add a temporary fix for generators ( #262 )
...
This enables us to ship them now, and find a way to resolve runtime path without webpack later.
See https://github.com/facebookincubator/create-react-app/issues/255
2016-07-28 19:52:14 +01:00
Dan Abramov
29c913e92e
Tweak ESLint to better understand Flow ( #261 )
2016-07-28 19:32:16 +01:00
Konstantin Tarkus
e2969b6565
Remove LICENSE from package.json/files ( #259 )
...
https://docs.npmjs.com/files/package.json#files
2016-07-28 18:32:18 +02:00
Dan Abramov
373257255c
Enable Node environment for ESLint
...
Fixes #260
2016-07-28 17:13:30 +01:00
Dan Abramov
a274617f16
Pin dependencies
2016-07-28 17:13:30 +01:00
John Weis
40b0ac9bd4
Return proper exit code in bin/react-scripts via spawnSync ( #252 ) ( #256 )
2016-07-28 07:56:00 -07:00
Dan Abramov
2e20fd13c0
Use a more solid way to reset the console
...
This seems to work best, both on Windows, OS X, and Linux
2016-07-28 15:14:47 +01:00
Dan Abramov
d071aa018b
Add some clarifications to the howto
2016-07-28 14:43:40 +01:00
Stanislav Sysoev
d564a9c48d
Add one more alternative ( #251 )
...
Add aik as possible alternative for create-react-app
2016-07-28 11:44:52 +01:00
Lawrence Wu
ca7d227ae0
Display JS and CSS bundle sizes after build ( #229 )
...
* Display JS and CSS bundle sizes after build
* Print gzipped filesize, address nits
* Use filesize for human readable output.
2016-07-28 00:58:15 +01:00
Lawson Kurtz
a9d1106e5d
Improve error handling within e2e.sh ( #244 )
...
* Improve error handling in E2E script
* Expose e2e.sh as npm test script
2016-07-27 16:07:52 -07:00
Dan Abramov
7040b71387
Bump versions to 0.2.0-alpha.1
2016-07-27 22:05:15 +01:00
Dan Abramov
39351165ed
Bump dependencies
2016-07-27 21:57:46 +01:00
Dan Abramov
2fe84ecded
Respect process.env.PORT
2016-07-27 21:48:19 +01:00
Dan Abramov
11894dcdb3
Enable generators ( #238 )
...
* Enable generators
* Opt out of using helpers
2016-07-27 21:44:50 +01:00
Peter Indiola
2edf2180f2
Suggest another port when 3000 is busy ( #101 , #243 )
...
Also fixes #194
2016-07-27 21:21:50 +01:00
Dan Abramov
a11d6a398f
Support .json extension
...
Some libraries rely on it, and they work fine with browserify.
Let’s just do the right thing here by default.
2016-07-27 19:32:52 +01:00
Dan Abramov
1740fa99fc
Fixup GH Pages deploy instructions
...
These work regardless of whether you already have a gh-pages branch.
2016-07-27 19:22:48 +01:00
Dan Thareja
f97b1bb090
Document how to install dependencies ( #223 )
2016-07-27 19:05:51 +02:00
Dan Abramov
9885e08c19
Remove accidental exclamation
2016-07-27 16:54:10 +01:00
Dan Abramov
9645cbd117
Switch over to recommending pushstate-server
...
It has a sane default port, gzip, and doesn’t aggressively cache index.html.
Perfect.
2016-07-27 16:52:58 +01:00
Alex Zherdev
88363b14a0
Turn off .babelrc usage ( #236 )
2016-07-27 15:41:34 +02:00
Dan Abramov
6d7741e897
Add Promise and fetch polyfills ( #235 )
2016-07-27 13:04:13 +01:00
Dan Abramov
3a1ed7a9d0
Recommend st instead of http-server
...
It has gzip built-in so the size numbers are closer to real world. Thanks @ForbesLindesay for the tip!
Related to #228
2016-07-27 12:04:17 +01:00
Florian Goße
e839dff82c
Use keyword warn in eslint config ( #234 )
...
* Use keyword `warn` in eslint config
We can use the keyword `warn` for rule configuration instead of a number.
* Fix comment which where WARNING was replaced
* Remove extra apostrophe
2016-07-27 11:30:20 +01:00
Dan Abramov
62679927b9
Use shorter hashes in production builds
2016-07-26 22:35:41 +01:00
Dan Abramov
80505887b3
Pin dependencies
2016-07-26 22:32:00 +01:00
Dan Abramov
9b6e87c6cb
Remove build directory without ending up in trash
...
This is frustrating with shells like `fish` that track directory moves
2016-07-26 22:31:11 +01:00
Héliton Nordt
895cfaf9bb
Use double quotes for JSX properties ( #225 )
...
It helps to maintain consistency with React docs
2016-07-26 21:45:35 +01:00
Héliton Nordt
1670fb13e7
Add .DS_Store to gitignore template ( #224 )
2016-07-26 11:11:57 -07:00
Héliton Nordt
591fbbfa59
Avoid CSS globals ( #220 )
2016-07-26 09:49:29 -07:00
Dan Abramov
4ca7b0da06
Document how to add linting in an editor
2016-07-26 15:08:25 +01:00
Dan Abramov
9a4e9678ad
Add some newlines to the console output
2016-07-26 12:11:16 +01:00
Kevin Lacker
f8bb37fb31
Merge pull request #202 from lacker/cleanlint
...
allow 2 * x + 1
2016-07-25 22:18:39 -07:00
Kevin Lacker
4c55619648
allow 2 * x + 1
2016-07-25 22:03:01 -07:00