- 17 Sep, 2016 2 commits
- 16 Sep, 2016 4 commits
-
-
Juan Soto authored
-
Vesa Laakso authored
* Split no-unused-vars ESLint config to multiple lines * Exempt variables prefixed with underscore from no-unused-vars rule This is useful when e.g. using object spread operator to remove only a certain field from the object. For example, this can be used to ignore a property from React component's `this.props`: render() { const { someAttribute: _unused, ...rest } = this.props; return <pre>{ JSON.stringify(rest) }</pre>; }
-
Moti Zilberman authored
* Resolve app paths from realpath of CWD, fix #637 * Use new resolveApp() for NODE_PATH too
-
Dave Ceddia authored
-
- 15 Sep, 2016 1 commit
-
-
Dan Abramov authored
-
- 14 Sep, 2016 2 commits
-
-
Ville Immonen authored
-
Maxime Thirouin authored
* Readme: add Travis-CI badge so people can easily see there is tests Following https://twitter.com/MoOx/status/776008513252392960 * Readme: add Travis-CI badge so people can easily see there is tests, round 2
-
- 13 Sep, 2016 1 commit
-
-
Jerome Smadja authored
-
- 12 Sep, 2016 2 commits
-
-
Dan Abramov authored
-
Dan Abramov authored
-
- 11 Sep, 2016 5 commits
-
-
Marek Suscak authored
* Check the app name before proceeding. * Refactor. * Use arrow function and template string. * Remove comment. * Rephrase the error. * Add missing semicolons.
-
Ville Immonen authored
Change "configs" to "configuration files" .
-
Brandon Newton authored
* Improve the output of scripts/init.js * Add semi-colons;
-
Michael Pratt authored
Resolves an issue that can occur in certain situations that causes a build error when user has CDed into an incorrectly cased directory.
-
Marek Suscak authored
-
- 10 Sep, 2016 2 commits
-
-
Khoa Nguyen authored
* Specify cache directory for babel loader * Use `react-scripts` for folder name instead
-
Ville Immonen authored
The regexes in the Jest `moduleNameMapper` configs were a bit too strict, causing them to not pick up files with special characters like `@` in the file path. Change them to match anything with the correct file extension.
-
- 06 Sep, 2016 1 commit
-
-
Ville Immonen authored
* Warn about unsupported Node.js versions Add the `engines` field to package.json so users of old Node.js versions will at least get a warning when trying to install create-react-app or react-scripts, e.g.: npm WARN engine create-react-app@0.3.0: wanted: {"node":">=6"} (current: {"node":"4.2.3","npm":"2.14.7"}) * Remove duplicated field and extra whitespace * Change the engine version back to 4
-
- 05 Sep, 2016 1 commit
-
-
cloudmu authored
* Change http-proxy-middleware logLevel from silent to error * provide onError handler for httpProxyMiddleware * Send proper error reponse upon proxy error.
-
- 03 Sep, 2016 11 commits
-
-
Dan Abramov authored
-
Dan Abramov authored
-
Dan Abramov authored
-
Dan Abramov authored
-
Dan Abramov authored
-
Jeremy Gayed authored
* Adds JSX extension support * PR changes * Add testRegex * Add note about not recommending JSX, link to issue
-
Dan Abramov authored
-
Dan Abramov authored
-
Dan Abramov authored
-
cloudmu authored
* Change http-proxy-middleware logLevel from silent to error * provide onError handler for httpProxyMiddleware
-
Eric Ferraiuolo authored
For the 0.4.0 CHANGELOG entry, the npm install command should be: ``` npm install --save-dev --save-exact react-scripts@0.4.0 ``` Not: ``` npm install --save-dev --save-exact react-scripts@0.3.1 ```
-
- 02 Sep, 2016 8 commits
-
-
ippa authored
-
Dan Abramov authored
-
Dan Abramov authored
-
Chris Castle authored
* Clarify proxy instructions in generated app README * Add backticks to format text/html as code
-
Dan Abramov authored
-
Dan Abramov authored
-
Dan Abramov authored
-
Dave Ceddia authored
With the HTTPS env var set 'true', the dev server will serve over HTTPS.
-