Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: facebook/create-react-app
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.3.0
Choose a base ref
...
head repository: facebook/create-react-app
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.3.1
Choose a head ref

Commits on Dec 5, 2019

  1. 10

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    9f4cb4f View commit details
  2. Copy the full SHA
    2ace7c2 View commit details

Commits on Dec 6, 2019

  1. Fix typo in CHANGELOG.md (#8080)

    Trontor authored and ianschmitz committed Dec 6, 2019
    Copy the full SHA
    8330e7c View commit details
  2. Remove error for @typescript-eslint/no-namespace (#7803)

    Declare namespaces are supported by babel now, and babel will throw with a nice error message for non-declare namespaces, so this rule is unnecessary. Closes #7651.
    szhu authored and heyimalex committed Dec 6, 2019
    Copy the full SHA
    b19bffe View commit details

Commits on Dec 9, 2019

  1. Fix CI build (#8122)

    ianschmitz authored Dec 9, 2019
    Copy the full SHA
    0b293e9 View commit details
  2. Copy the full SHA
    0327d89 View commit details
  3. Copy the full SHA
    53a48c4 View commit details
  4. Fix typo in comment: ?. is right, not .? (#8124)

    This is just a comment fix.
    
    Actual optional chaining operator syntax is `?.`, not `.?`.
    vadzim authored and ianschmitz committed Dec 9, 2019
    Copy the full SHA
    b8ff97b View commit details

Commits on Dec 10, 2019

  1. Copy the full SHA
    1f1594d View commit details

Commits on Dec 11, 2019

  1. [Security] Update terser webpack plugin (#8102)

    * security: update terser webpack plugin
    RDIL authored and andriijas committed Dec 11, 2019
    Copy the full SHA
    8d1a4f2 View commit details

Commits on Dec 13, 2019

  1. Add current version and bin location to --info output (#8168)

    Make the --info subcommand outuput the current version information and the location of the file being run. Our issue template tells users to provide the output of --info, so having the current version is incredibly helpful, especially since it doesn't necessarily match the globally installed version that envinfo outputs. Knowing the location helps us determine whether the running bin is globally installed or in the local node_modules.
    heyimalex authored and andriijas committed Dec 13, 2019
    Copy the full SHA
    ebcffda View commit details
  2. Bump pkgUp (#8163)

    andriijas authored Dec 13, 2019
    Copy the full SHA
    9922275 View commit details
  3. Bump chalk (#8164)

    andriijas authored Dec 13, 2019
    Copy the full SHA
    349a92a View commit details
  4. Add link to Netlify in README

    iansu authored Dec 13, 2019
    Copy the full SHA
    ab2976f View commit details

Commits on Dec 14, 2019

  1. Bump internal dependencies (#8176)

    * Bump dependencies in react-dev-utils
    
    * Bump dependencies in react-app-polyfill
    
    * Bump dependencies in create-react-app
    
    * Bump dependencies in react-error-overlay
    
    * Bump dependencies in react-scripts
    
    * Bump react
    andriijas authored Dec 14, 2019
    Copy the full SHA
    f26de73 View commit details

Commits on Dec 15, 2019

  1. Add package-runner note to readme (#8132)

    * Add package-runner note to readme
    
    * Add link to `yarn create`
    JeromeDeLeon authored and iansu committed Dec 15, 2019
    Copy the full SHA
    f314855 View commit details
  2. Copy the full SHA
    1a13b59 View commit details

Commits on Dec 16, 2019

  1. Minor refactors in create-react-app (#8178)

    - Remove templates version minimum stopgap.
    - Replace indexOf with more idiomatic alternatives.
    - Inline errorLogFilePatterns.
    - Alphabetize validFiles.
    - Simplify log file removal code.
    - Move unconditional console.log() call outside of isSafe.
    - Differentiate conflicting directories from files.
    - Document yarn version special case.
    - Inline printValidationResults.
    - Standardize checkAppName output on failure.
    - Add link for checkThatNpmCanReadCwd.
    
    Functionally the code should be exactly the same.
    heyimalex authored Dec 16, 2019
    Copy the full SHA
    30eaab4 View commit details

Commits on Dec 18, 2019

  1. Copy the full SHA
    18e56da View commit details

Commits on Dec 19, 2019

  1. Copy the full SHA
    88a5435 View commit details

Commits on Dec 20, 2019

  1. Little typo (#8212)

    sonyarianto authored and andriijas committed Dec 20, 2019
    Copy the full SHA
    3f2037b View commit details

Commits on Dec 30, 2019

  1. Replace favicon in templates (#8194)

    The old favicon was the same as the official react documentation, which is a minor annoyance during development when trying to find the tab you want. The new favicon is just the old with inverted colors.
    
    Closes #7957
    heyimalex authored Dec 30, 2019
    Copy the full SHA
    c03bb36 View commit details

Commits on Jan 12, 2020

  1. Copy the full SHA
    fa85f03 View commit details
  2. Copy the full SHA
    94932be View commit details

Commits on Jan 16, 2020

  1. Minor grammatical edit (#8293)

    egrim authored and heyimalex committed Jan 16, 2020
    Copy the full SHA
    f875bb0 View commit details

Commits on Jan 21, 2020

  1. Update Dependencies (#8324)

    RDIL authored and ianschmitz committed Jan 21, 2020
    Copy the full SHA
    a608c5a View commit details

Commits on Jan 22, 2020

  1. Remove React.FC from Typescript template (#8177)

    This removes `React.FC` from the base template for a Typescript project.
    
    Long explanation for a small change: 
    
    `React.FC` is unnecessary: it provides next to no benefits and has a few downsides.  (See below.)  I see a lot of beginners to TS+React using it, however, and I think that it's usage in this template is a contributing factor to that, as the prominence of this template makes it a de facto source of "best practice".  
    
    ### Downsides to React.FC/React.FunctionComponent
    
    ##### Provides an implicit definition of `children`
    
    Defining a component with `React.FC` causes it to implicitly take `children` (of type `ReactNode`).  It means that all components accept children, even if they're not supposed to, allowing code like:
    
    ```ts
    const App: React.FC = () => { /*... */ };
    const Example = () => {
    	<App><div>Unwanted children</div></App>
    }
    ```
    
    This isn't a run-time error, but it is a mistake and one that would be caught by Typescript if not for `React.FC`. 
    
    ##### Doesn't support generics.
    I can define a generic component like:
    ```ts
    type GenericComponentProps<T> = {
       prop: T
       callback: (t: T) => void
    }
    const GenericComponent = <T>(props: GenericComponentProps<T>) => {/*...*/}
    ```
    
    But it's not possible when using `React.FC` - there's no way to preserve the unresolved generic `T` in the type returned by `React.FC`.
    
    ```ts
    const GenericComponent: React.FC</* ??? */> = <T>(props: GenericComponentProps<T>) => {/*...*/}
    ```
    
    ##### Makes "component as namespace pattern" more awkward.
    It's a somewhat popular pattern to use a component as a namespace for related components (usually children):
    
    ```jsx
    <Select>
    	<Select.Item />
    </Select>
    ```
    
    This is possible, but awkward, with `React.FC`:
    
    ```tsx
    const  Select: React.FC<SelectProps> & { Item: React.FC<ItemProps> } = (props) => {/* ... */ }
    Select.Item = (props) => { /*...*/ }
    ```
    
    but "just works" without `React.FC`:
    
    ```tsx
    const Select = (props: SelectProps) => {/* ... */}
    Select.Item = (props) => { /*...*/ }
    ```
    
    ##### Doesn't work correctly with defaultProps
    
    This is a fairly moot point as in both cases it's probably better to use ES6 default arguments, but...
    
    ```tsx
    type  ComponentProps = { name: string; }
    
    const  Component = ({ name }: ComponentProps) => (<div>
    	{name.toUpperCase()} /* Safe since name is required */
    </div>);
    Component.defaultProps = { name: "John" };
    
    const  Example = () => (<Component />) /* Safe to omit since name has a default value */
    ```
    This compiles correctly.  Any approach with `React.FC` will be slightly wrong: either `React.FC<{name: string}>` will make the prop required by consumers, when it should be optional, or `React.FC<{name?: string}>` will cause `name.toUpperCase()` to be a type error.  There's no way to replicate the "internally required, externally optional" behavior which is desired.
    
    ##### It's as long, or longer than the alternative: (especially longer if you use `FunctionalComponent`):
    Not a huge point, but it isn't even shorter to use `React.FC` 
    ```ts
    const C1: React.FC<CProps> = (props) => { }
    const C2 = (props: CProps) => {};
    ```
    
    ### Benefits of React.FC
    
    ##### Provides an explicit return type
    
    The only benefit I really see to `React.FC` (unless you think that implicit `children` is a good thing) is that it specifies the return type, which catches mistakes like:
    
    ```ts
    const Component = () => {
       return undefined; // components aren't allowed to return undefined, just `null`
    }
    ```
    
    In practice, I think this is fine, as it'll be caught as soon as you try to use it:
    
    ```ts
    const Example = () => <Component />; // Error here, due to Component returning the wrong thing
    ```
    
    But even with explicit type annotations, `React.FC` still isn't saving very much boilerplate:
    
    ```ts
    const Component1 = (props: ComponentProps): ReactNode => { /*...*/ }
    const Component2: FC<ComponentProps> = (props) => { /*...*/ }
    ```
    Retsam authored and ianschmitz committed Jan 22, 2020
    Copy the full SHA
    dada035 View commit details

Commits on Jan 23, 2020

  1. Copy the full SHA
    4bf14fa View commit details

Commits on Jan 30, 2020

  1. Remove outdated babel plugins (#8353)

    Updates dependencies and removes babel plugins that are now covered by `@babel/preset-env`.
    
    Co-authored-by: hdineen <hdineen@hubspot.com>
    ianschmitz and henryqdineen authored Jan 30, 2020
    Copy the full SHA
    b855da5 View commit details
  2. Copy the full SHA
    ddcb7d5 View commit details
  3. Copy the full SHA
    720d90b View commit details
  4. Update custom template docs with instructions for testing custom temp…

    …late locally (#8092)
    
    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    kevinold and ianschmitz authored Jan 30, 2020
    Copy the full SHA
    cafd602 View commit details
  5. Update setting-up-your-editor.md (#8247)

    `Auto Fix is enabled by default. Use the single string form.` warning is shown in `.vscode/settings.json` due to changes in vscode-eslint. 
    As autoFix is set to default, object format in `eslint.validate` is deprecated.
    eip1599 authored Jan 30, 2020
    Copy the full SHA
    ca9c61e View commit details
  6. Remove outdated docs regarding vscode eslint extension and type… (#8307)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    john-james-gh and ianschmitz authored Jan 30, 2020
    Copy the full SHA
    dd0df73 View commit details
  7. Copy the full SHA
    e530598 View commit details
  8. Copy the full SHA
    ed162a3 View commit details

Commits on Jan 31, 2020

  1. Copy the full SHA
    6ee4e91 View commit details
  2. Copy the full SHA
    03018d7 View commit details
  3. docs: Add troubleshooting documentation on ENOSPC (#8380)

    Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
    huchenme and ianschmitz authored Jan 31, 2020
    Copy the full SHA
    4da41b4 View commit details
  4. Prepare 3.3.1 release

    iansu committed Jan 31, 2020
    Copy the full SHA
    a7b8732 View commit details
  5. Publish

     - babel-plugin-named-asset-import@0.3.6
     - babel-preset-react-app@9.1.1
     - cra-template-typescript@1.0.1
     - cra-template@1.0.1
     - create-react-app@3.3.1
     - eslint-config-react-app@5.2.0
     - react-app-polyfill@1.0.6
     - react-dev-utils@10.1.0
     - react-error-overlay@6.0.5
     - react-scripts@3.3.1
    iansu committed Jan 31, 2020
    Copy the full SHA
    d7c6842 View commit details
Showing with 3,135 additions and 2,613 deletions.
  1. +123 −1 CHANGELOG.md
  2. +4 −1 README.md
  3. +30 −15 docusaurus/docs/custom-templates.md
  4. +1 −1 docusaurus/docs/getting-started.md
  5. +4 −4 docusaurus/docs/making-a-progressive-web-app.md
  6. +1 −17 docusaurus/docs/setting-up-your-editor.md
  7. +2 −2 docusaurus/docs/supported-browsers-features.md
  8. +18 −0 docusaurus/docs/troubleshooting.md
  9. +1 −1 docusaurus/website/docusaurus.config.js
  10. +4 −4 docusaurus/website/package.json
  11. +1 −0 docusaurus/website/sidebars.json
  12. +19 −0 docusaurus/website/src/css/custom.css
  13. +1,194 −1,083 docusaurus/website/yarn.lock
  14. +3 −0 package.json
  15. +2 −2 packages/babel-plugin-named-asset-import/index.test.js
  16. +2 −2 packages/babel-plugin-named-asset-import/package.json
  17. +23 −41 packages/babel-preset-react-app/create.js
  18. +27 −28 packages/babel-preset-react-app/dependencies.js
  19. +13 −19 packages/babel-preset-react-app/package.json
  20. +1 −1 packages/cra-template-typescript/package.json
  21. +11 −9 packages/cra-template-typescript/template.json
  22. BIN packages/cra-template-typescript/template/public/favicon.ico
  23. +1 −1 packages/cra-template-typescript/template/src/App.tsx
  24. +1 −1 packages/cra-template/package.json
  25. +6 −4 packages/cra-template/template.json
  26. BIN packages/cra-template/template/public/favicon.ico
  27. +1 −0 packages/cra-template/template/public/robots.txt
  28. +92 −62 packages/create-react-app/createReactApp.js
  29. +7 −7 packages/create-react-app/package.json
  30. +1,385 −1,211 packages/create-react-app/yarn.lock.cached
  31. +0 −1 packages/eslint-config-react-app/index.js
  32. +1 −1 packages/eslint-config-react-app/package.json
  33. +2 −2 packages/react-app-polyfill/package.json
  34. +1 −1 packages/react-dev-utils/README.md
  35. +1 −1 packages/react-dev-utils/browsersHelper.js
  36. +1 −1 packages/react-dev-utils/openBrowser.js
  37. +15 −15 packages/react-dev-utils/package.json
  38. +1 −1 packages/react-dev-utils/typescriptFormatter.js
  39. +2 −1 packages/react-dev-utils/webpackHotDevClient.js
  40. +18 −18 packages/react-error-overlay/package.json
  41. +1 −1 packages/react-error-overlay/src/containers/RuntimeErrorContainer.js
  42. +5 −2 packages/react-scripts/config/webpack.config.js
  43. +9 −7 packages/react-scripts/fixtures/kitchensink/template.json
  44. +3 −1 packages/react-scripts/lib/react-app.d.ts
  45. +27 −27 packages/react-scripts/package.json
  46. +62 −14 packages/react-scripts/scripts/init.js
  47. +1 −1 tasks/e2e-simple.sh
  48. +1 −1 tasks/local-test.sh
  49. +7 −0 test/fixtures/typescript/src/App.ts
124 changes: 123 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,125 @@
## 3.3.1 (2020-01-31)

v3.3.1 is a maintenance release that includes minor bug fixes and documentation updates.

#### :bug: Bug Fix

- `cra-template`
- [#8255](https://github.com/facebook/create-react-app/pull/8255) Add "Disallow:" to robots.txt ([@tomoyaf](https://github.com/tomoyaf))
- `react-scripts`
- [#8281](https://github.com/facebook/create-react-app/pull/8281) Fix sass importLoaders ([@mariusc23](https://github.com/mariusc23))
- [#8099](https://github.com/facebook/create-react-app/pull/8099) Add titleProp to SVGR ReactComponent type definition ([@rhnorskov](https://github.com/rhnorskov))
- [#8028](https://github.com/facebook/create-react-app/pull/8028) fix(react-scripts): proactively append to .gitignore during generation ([@bmuenzenmeyer](https://github.com/bmuenzenmeyer))
- [#8106](https://github.com/facebook/create-react-app/pull/8106) Fix CSS font-face minification ([@sidonaldson](https://github.com/sidonaldson))
- `babel-preset-react-app`
- [#8120](https://github.com/facebook/create-react-app/pull/8120) Sync dependencies babel config ([@ianschmitz](https://github.com/ianschmitz))
- `react-dev-utils`
- [#8116](https://github.com/facebook/create-react-app/pull/8116) Add slashes to WebSocket protocol URL ([@Baael](https://github.com/Baael))
- [#8079](https://github.com/facebook/create-react-app/pull/8079) webpackHotDevClient now uses wss when https is used ([@mikecaulley](https://github.com/mikecaulley))

#### :nail_care: Enhancement

- `react-error-overlay`
- [#6548](https://github.com/facebook/create-react-app/pull/6548) Add helpful message to the footer ([@pyrogenic](https://github.com/pyrogenic))
- `cra-template-typescript`
- [#8177](https://github.com/facebook/create-react-app/pull/8177) Remove React.FC from Typescript template ([@Retsam](https://github.com/Retsam))
- `cra-template-typescript`, `cra-template`, `react-scripts`
- [#8219](https://github.com/facebook/create-react-app/pull/8219) Add template support for any package.json keys (#8082) ([@tomvalorsa](https://github.com/tomvalorsa))
- `create-react-app`
- [#8298](https://github.com/facebook/create-react-app/pull/8298) Support shorthand scoped templates ([@kevin940726](https://github.com/kevin940726))
- [#8168](https://github.com/facebook/create-react-app/pull/8168) Add current version and bin location to --info output ([@heyimalex](https://github.com/heyimalex))
- `cra-template-typescript`, `cra-template`
- [#8194](https://github.com/facebook/create-react-app/pull/8194) Replace favicon in templates ([@heyimalex](https://github.com/heyimalex))
- `eslint-config-react-app`
- [#7803](https://github.com/facebook/create-react-app/pull/7803) Remove error for @typescript-eslint/no-namespace ([@szhu](https://github.com/szhu))

#### :memo: Documentation

- Other
- [#8380](https://github.com/facebook/create-react-app/pull/8380) docs: Add troubleshooting documentation on ENOSPC ([@huchenme](https://github.com/huchenme))
- [#8394](https://github.com/facebook/create-react-app/pull/8394) Update docs according to lint-staged v10 ([@lukyth](https://github.com/lukyth))
- [#8307](https://github.com/facebook/create-react-app/pull/8307) Remove outdated docs regarding vscode eslint extension and typescript autofix ([@alex-vukovity-cko](https://github.com/alex-vukovity-cko))
- [#8247](https://github.com/facebook/create-react-app/pull/8247) Update setting-up-your-editor.md ([@dev-xu](https://github.com/dev-xu))
- [#8092](https://github.com/facebook/create-react-app/pull/8092) Update custom template docs with instructions for testing custom template locally ([@kevinold](https://github.com/kevinold))
- [#8293](https://github.com/facebook/create-react-app/pull/8293) Minor grammatical edit ([@egrim](https://github.com/egrim))
- [#8212](https://github.com/facebook/create-react-app/pull/8212) Little typo ([@sonyarianto](https://github.com/sonyarianto))
- [#8147](https://github.com/facebook/create-react-app/pull/8147) update PWA docs links to point to template package ([@peet](https://github.com/peet))
- [#8132](https://github.com/facebook/create-react-app/pull/8132) Add package-runner note to readme ([@JeromeDeLeon](https://github.com/JeromeDeLeon))
- [#8111](https://github.com/facebook/create-react-app/pull/8111) chore: update docusaurus & tweak site ([@endiliey](https://github.com/endiliey))
- [#8080](https://github.com/facebook/create-react-app/pull/8080) Fix typo in CHANGELOG.md ([@Trontor](https://github.com/Trontor))
- [#8077](https://github.com/facebook/create-react-app/pull/8077) Add custom-templates to docs sidebar ([@ianschmitz](https://github.com/ianschmitz))
- `babel-preset-react-app`
- [#8124](https://github.com/facebook/create-react-app/pull/8124) Fix typo in comment: `?.` is right, `.?` is not ([@vadzim](https://github.com/vadzim))

#### :house: Internal

- `create-react-app`
- [#8178](https://github.com/facebook/create-react-app/pull/8178) Minor refactors in create-react-app ([@heyimalex](https://github.com/heyimalex))

#### :hammer: Underlying Tools

- `babel-preset-react-app`, `create-react-app`, `react-dev-utils`, `react-error-overlay`, `react-scripts`
- [#8353](https://github.com/facebook/create-react-app/pull/8353) Remove outdated babel plugins ([@ianschmitz](https://github.com/ianschmitz))
- [#8324](https://github.com/facebook/create-react-app/pull/8324) Update Dependencies ([@RDIL](https://github.com/RDIL))
- [#8122](https://github.com/facebook/create-react-app/pull/8122) Fix CI build ([@ianschmitz](https://github.com/ianschmitz))
- `react-dev-utils`
- [#8364](https://github.com/facebook/create-react-app/pull/8364) Downgrade open from 7.0.0 to 6.4.0 ([@vince1995](https://github.com/vince1995))
- [#8163](https://github.com/facebook/create-react-app/pull/8163) Bump pkgUp ([@andriijas](https://github.com/andriijas))
- `babel-plugin-named-asset-import`
- [#8171](https://github.com/facebook/create-react-app/pull/8171) Bump babel-plugin-tester and fix breaking changes ([@andriijas](https://github.com/andriijas))
- `create-react-app`, `react-app-polyfill`, `react-dev-utils`, `react-error-overlay`, `react-scripts`
- [#8176](https://github.com/facebook/create-react-app/pull/8176) Bump internal dependencies ([@andriijas](https://github.com/andriijas))
- `create-react-app`, `react-dev-utils`, `react-error-overlay`
- [#8164](https://github.com/facebook/create-react-app/pull/8164) Bump chalk ([@andriijas](https://github.com/andriijas))
- `react-error-overlay`, `react-scripts`
- [#8102](https://github.com/facebook/create-react-app/pull/8102) [Security] Update terser webpack plugin ([@RDIL](https://github.com/RDIL))

#### Committers: 29

- Alex Guerra ([@heyimalex](https://github.com/heyimalex))
- Alex James Vukovity ([@alex-vukovity-cko](https://github.com/alex-vukovity-cko))
- Andreas Cederström ([@andriijas](https://github.com/andriijas))
- Boyuan Xu ([@dev-xu](https://github.com/dev-xu))
- Brian Muenzenmeyer ([@bmuenzenmeyer](https://github.com/bmuenzenmeyer))
- Endi ([@endiliey](https://github.com/endiliey))
- Evan Grim ([@egrim](https://github.com/egrim))
- Hu Chen ([@huchenme](https://github.com/huchenme))
- Ian Schmitz ([@ianschmitz](https://github.com/ianschmitz))
- Jerome De Leon ([@JeromeDeLeon](https://github.com/JeromeDeLeon))
- Joshua Pollak ([@pyrogenic](https://github.com/pyrogenic))
- Kai Hao ([@kevin940726](https://github.com/kevin940726))
- Kanitkorn Sujautra ([@lukyth](https://github.com/lukyth))
- Kevin Old ([@kevinold](https://github.com/kevinold))
- Marius Craciunoiu ([@mariusc23](https://github.com/mariusc23))
- Mike Caulley ([@mikecaulley](https://github.com/mikecaulley))
- Peet Goddard ([@peet](https://github.com/peet))
- Rasmus Nørskov ([@rhnorskov](https://github.com/rhnorskov))
- Reece Dunham ([@RDIL](https://github.com/RDIL))
- Sean Zhu ([@szhu](https://github.com/szhu))
- Simon Donaldson ([@sidonaldson](https://github.com/sidonaldson))
- Sony AK ([@sonyarianto](https://github.com/sonyarianto))
- Tom Valorsa ([@tomvalorsa](https://github.com/tomvalorsa))
- Tomoya Fujita ([@tomoyaf](https://github.com/tomoyaf))
- Vadzim ([@vadzim](https://github.com/vadzim))
- Vincent Semrau ([@vince1995](https://github.com/vince1995))
- Wojciech Zieliński ([@Baael](https://github.com/Baael))
- [@Retsam](https://github.com/Retsam)
- [@Trontor](https://github.com/Trontor)

### Migrating from 3.3.0 to 3.3.1

Inside any created project that has not been ejected, run:

```sh
npm install --save --save-exact react-scripts@3.3.1
```

or

```sh
yarn add --exact react-scripts@3.3.1
```

## 3.3.0 (2019-12-04)

v3.3.0 is a minor release that adds new features, including custom templates and support for the new optional chaining and nullish coalescing operators.
@@ -35,7 +157,7 @@ null ?? 'some other default'; // result: 'some other default'
false ?? true; // result: false
```

**If your're using TypeScript, you will need to upgrade your `typescript` dependency to `3.7.0` or later if you wish to use the new operators.**
**If you're using TypeScript, you will need to upgrade your `typescript` dependency to `3.7.0` or later if you wish to use the new operators.**

**If you're using Visual Studio Code 1.40 (the latest as of this release) or earlier, you will need to configure your editor if you want it to understand the new operators.**

5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@ npx create-react-app my-app
cd my-app
npm start
```
If you've previously installed `create-react-app` globally via `npm install -g create-react-app`, we recommend you uninstall the package using `npm uninstall -g create-react-app` to ensure that npx always uses the latest version.

_([npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) comes with npm 5.2+ and higher, see [instructions for older npm versions](https://gist.github.com/gaearon/4064d3c23a77c74a3614c498a8bb1c5f))_

@@ -61,7 +62,7 @@ _`npm init <initializer>` is available in npm 6+_
yarn create react-app my-app
```

_`yarn create` is available in Yarn 0.25+_
_[`yarn create <starter-kit-package>`](https://yarnpkg.com/lang/en/docs/cli/create/) is available in Yarn 0.25+_

It will create a directory called `my-app` inside the current folder.<br>
Inside that directory, it will generate the initial project structure and install the transitive dependencies:
@@ -196,6 +197,8 @@ We'd love to have your helping hand on `create-react-app`! See [CONTRIBUTING.md]
This project exists thanks to all the people who [contribute](CONTRIBUTING.md).<br>
<a href="https://github.com/facebook/create-react-app/graphs/contributors"><img src="https://opencollective.com/create-react-app/contributors.svg?width=890&button=false" /></a>

Thanks to [Netlify](https://www.netlify.com/) for hosting our documentation.

## Acknowledgements

We are grateful to the authors of existing related projects for their ideas and collaboration:
45 changes: 30 additions & 15 deletions docusaurus/docs/custom-templates.md
Original file line number Diff line number Diff line change
@@ -9,16 +9,10 @@ Custom Templates enable you to select a template to create your project from, wh

You'll notice that Custom Templates are always named in the format `cra-template-[template-name]`, however you only need to provide the `[template-name]` to the creation command.

### npm
Scoped templates are also supported, under the name `@[scope-name]/cra-template` or `@[scope-name]/cra-template-[template-name]`, which can be installed via `@[scope]` and `@[scope]/[template-name]` respectively.

```sh
npm init react-app my-app --template [template-name]
```

### Yarn

```sh
yarn create react-app my-app --template [template-name]
npx create-react-app my-app --template [template-name]
```

## Finding custom templates
@@ -50,6 +44,14 @@ my-app/
index.js (or index.tsx)
```

### Testing a template

To test a template locally, pass the file path to the directory of your template source using the `file:` prefix.

```sh
npx create-react-app my-app --template file:../path/to/your/template/cra-template-[template-name]
```

### The `template` folder

This folder is copied to the user's app directory as Create React App installs. During this process, the file `gitignore` is renamed to `.gitignore`.
@@ -58,18 +60,31 @@ You can add whatever files you want in here, but you must have at least the file

### The `template.json` file

This is where you can define dependencies (only dependencies are supported for now), as well as any custom scripts that your template relies on.
This is the configuration file for your template. As this is a new feature, more options will be added over time. For now, only a `package` key is supported.

The `package` key lets you provide any keys/values that you want added to the new project's `package.json`, such as dependencies (only dependencies are supported for now) and any custom scripts that your template relies on.

Below is an example `template.json` file:

```json
{
"dependencies": {
"serve": "^11.2.0"
},
"scripts": {
"serve": "serve -s build",
"build-and-serve": "npm run build && npm run serve"
"package": {
"dependencies": {
"eslint-plugin-jsx-a11y": "^6.2.3",
"serve": "^11.2.0"
},
"scripts": {
"serve": "serve -s build",
"build-and-serve": "npm run build && npm run serve"
},
"eslintConfig": {
"extends": ["react-app", "plugin:jsx-a11y/recommended"],
"plugins": ["jsx-a11y"]
}
}
}
```

Any values you add for `"dependencies"` and `"scripts"` will be merged with the Create React App defaults. Values for any other keys will be used as-is, replacing any matching Create React App defaults.

For convenience, we always replace `npm run` with `yarn` in your custom `"scripts"`, as well as in your `README` when projects are initialized with yarn.
2 changes: 1 addition & 1 deletion docusaurus/docs/getting-started.md
Original file line number Diff line number Diff line change
@@ -147,7 +147,7 @@ The page will automatically reload if you make changes to the code. You will see

Runs the test watcher in an interactive mode. By default, runs tests related to files changed since the last commit.

[Read more about testing](https://facebook.github.io/create-react-app/docs/running-tests).
[Read more about testing](running-tests.md).

### `npm run build` or `yarn build`

8 changes: 4 additions & 4 deletions docusaurus/docs/making-a-progressive-web-app.md
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ the build process will generate a service worker file, but it will not be
registered, so it will not take control of your production web app.

In order to opt-in to the offline-first behavior, developers should look for the
following in their [`src/index.js`](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/src/index.js) file:
following in their [`src/index.js`](https://github.com/facebook/create-react-app/blob/master/packages/cra-template/template/src/index.js) file:

```js
// If you want your app to work offline and load faster, you can change
@@ -62,7 +62,7 @@ following into account:
fetched the latest updates that will be available the next time they load the
page (showing a "New content is available once existing tabs are closed." message). Showing
these messages is currently left as an exercise to the developer, but as a
starting point, you can make use of the logic included in [`src/serviceWorker.js`](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/src/serviceWorker.js), which
starting point, you can make use of the logic included in [`src/serviceWorker.js`](https://github.com/facebook/create-react-app/blob/master/packages/cra-template/template/src/serviceWorker.js), which
demonstrates which service worker lifecycle events to listen for to detect each
scenario, and which as a default, only logs appropriate messages to the
JavaScript console.
@@ -93,11 +93,11 @@ following into account:
## Progressive Web App Metadata

The default configuration includes a web app manifest located at
[`public/manifest.json`](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/public/manifest.json), that you can customize with
[`public/manifest.json`](https://github.com/facebook/create-react-app/blob/master/packages/cra-template/template/public/manifest.json), that you can customize with
details specific to your web application.

When a user adds a web app to their homescreen using Chrome or Firefox on
Android, the metadata in [`manifest.json`](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/public/manifest.json) determines what
Android, the metadata in [`manifest.json`](https://github.com/facebook/create-react-app/blob/master/packages/cra-template/template/public/manifest.json) determines what
icons, names, and branding colors to use when the web app is displayed.
[The Web App Manifest guide](https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/)
provides more context about what each field means, and how your customizations
18 changes: 1 addition & 17 deletions docusaurus/docs/setting-up-your-editor.md
Original file line number Diff line number Diff line change
@@ -22,21 +22,6 @@ Some editors, including Sublime Text, Atom, and Visual Studio Code, provide plug

They are not required for linting. You should see the linter output right in your terminal as well as the browser console. If you prefer the lint results to appear right in your editor, please make sure you install an ESLint plugin/extension.

If you're using TypeScript and Visual Studio Code, the [ESLint Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint#overview) currently [doesn't have TypeScript support enabled by default](https://github.com/Microsoft/vscode-eslint/issues/609). To enable TypeScript support in the ESLint extension, add the following to your project's Visual Studio Code settings file, located at `.vscode/settings.json` (you can create this file if it doesn't already exist):

```json
{
"eslint.validate": [
"javascript",
"javascriptreact",
{ "language": "typescript", "autoFix": true },
{ "language": "typescriptreact", "autoFix": true }
]
}
```

Now your editor should report the linting warnings.

Note that even if you customise your ESLint config, these changes will **only affect the editor integration**. They won’t affect the terminal and in-browser lint output. This is because Create React App intentionally provides a minimal set of rules that find common mistakes.

If you want to enforce a coding style for your project, consider using [Prettier](https://github.com/jlongster/prettier) instead of ESLint style rules.
@@ -166,8 +151,7 @@ Next we add a 'lint-staged' field to the `package.json`, for example:
},
+ "lint-staged": {
+ "src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
+ "prettier --write",
+ "git add"
+ "prettier --write"
+ ]
+ },
"scripts": {
4 changes: 2 additions & 2 deletions docusaurus/docs/supported-browsers-features.md
Original file line number Diff line number Diff line change
@@ -50,6 +50,6 @@ Here is an example `browserslist` that is specified in `package.json`:
}
```

> Note that this does not include polyfills automatically for you. You will still need to polyfill language features (see above) as needed based on the browsers your are supporting.
> Note that this does not include polyfills automatically for you. You will still need to polyfill language features (see above) as needed based on the browsers you are supporting.
> When editing the `browserslist` config, you may notice that your changes don't get picked up right away. This is due to an [issue in babel-loader](https://github.com/babel/babel-loader/issues/690) not detecting the change in your `package.json`. An quick solution is to delete the `node_modules/.cache` folder and try again.
> When editing the `browserslist` config, you may notice that your changes don't get picked up right away. This is due to an [issue in babel-loader](https://github.com/babel/babel-loader/issues/690) not detecting the change in your `package.json`. A quick solution is to delete the `node_modules/.cache` folder and try again.
18 changes: 18 additions & 0 deletions docusaurus/docs/troubleshooting.md
Original file line number Diff line number Diff line change
@@ -20,6 +20,24 @@ If this doesn’t happen, try one of the following workarounds:

If none of these solutions help please leave a comment [in this thread](https://github.com/facebook/create-react-app/issues/659).

## `npm start` fail due to watch error

If you are using a Linux operating system and see an error similar to: `ENOSPC: System limit for number of file watchers reached`, you can fix the issue by increasing the `fs.inotify.max_user_watches` setting of your operating system.

If you are running Debian, RedHat, or another similar Linux distribution, run the following in a terminal:

```sh
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
```

If you are running ArchLinux, run the following command instead:

```sh
echo fs.inotify.max_user_watches=524288 | sudo tee /etc/sysctl.d/40-max-user-watches.conf && sudo sysctl --system
```

Then paste it in your terminal and press on enter to run it. You could find more information [here](https://github.com/guard/listen/wiki/Increasing-the-amount-of-inotify-watchers#the-technical-details).

## `npm test` hangs or crashes on macOS Sierra

If you run `npm test` and the console gets stuck after printing `react-scripts test` to the console there might be a problem with your [Watchman](https://facebook.github.io/watchman/) installation as described in [facebook/create-react-app#713](https://github.com/facebook/create-react-app/issues/713).
2 changes: 1 addition & 1 deletion docusaurus/website/docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ const siteConfig = {
path: '../docs',
sidebarPath: require.resolve('./sidebars.json'),
editUrl:
'https://github.com/facebook/create-react-app/edit/master/docusaurus/docs/',
'https://github.com/facebook/create-react-app/edit/master/docusaurus/website',
showLastUpdateAuthor: true,
showLastUpdateTime: true,
},
8 changes: 4 additions & 4 deletions docusaurus/website/package.json
Original file line number Diff line number Diff line change
@@ -6,11 +6,11 @@
"deploy": "docusaurus deploy"
},
"dependencies": {
"@docusaurus/core": "^2.0.0-alpha.30",
"@docusaurus/preset-classic": "^2.0.0-alpha.30",
"@docusaurus/core": "^2.0.0-alpha.39",
"@docusaurus/preset-classic": "^2.0.0-alpha.39",
"classnames": "^2.2.6",
"react": "^16.11.0",
"react-dom": "^16.11.0"
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"browserslist": {
"production": [
1 change: 1 addition & 0 deletions docusaurus/website/sidebars.json
Original file line number Diff line number Diff line change
@@ -47,6 +47,7 @@
],
"Deployment": ["deployment"],
"Advanced Usage": [
"custom-templates",
"can-i-use-decorators",
"pre-rendering-into-static-html-files",
"advanced-configuration",
19 changes: 19 additions & 0 deletions docusaurus/website/src/css/custom.css
Original file line number Diff line number Diff line change
@@ -7,3 +7,22 @@
--ifm-color-primary-lighter: rgb(83, 224, 197);
--ifm-color-primary-lightest: rgb(132, 233, 214);
}

@media screen and (max-width: 996px) {
:root {
--ifm-font-size-base: 15px;
}
}

@media screen and (min-width: 997px) {
:root {
--ifm-font-size-base: 17px;
}
}

.docusaurus-highlight-code-line {
background-color: rgb(72, 77, 91);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
}
2,277 changes: 1,194 additions & 1,083 deletions docusaurus/website/yarn.lock

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -43,6 +43,9 @@
"tempy": "^0.2.1",
"wait-for-localhost": "^3.1.0"
},
"resolutions": {
"mkdirp": "0.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
4 changes: 2 additions & 2 deletions packages/babel-plugin-named-asset-import/index.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const pluginTester = require('babel-plugin-tester');
const pluginTester = require('babel-plugin-tester/pure');
const namedAssetImport = require('./index');

pluginTester({
pluginTester.default({
plugin: namedAssetImport,
pluginOptions: {
loaderMap: {
4 changes: 2 additions & 2 deletions packages/babel-plugin-named-asset-import/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "babel-plugin-named-asset-import",
"version": "0.3.5",
"version": "0.3.6",
"description": "Babel plugin for named asset imports in Create React App",
"repository": {
"type": "git",
@@ -19,7 +19,7 @@
"@babel/core": "^7.1.0"
},
"devDependencies": {
"babel-plugin-tester": "^7.0.1",
"babel-plugin-tester": "^8.0.1",
"jest": "24.9.0"
},
"scripts": {
64 changes: 23 additions & 41 deletions packages/babel-preset-react-app/create.js
Original file line number Diff line number Diff line change
@@ -117,29 +117,29 @@ module.exports = function(api, opts, env) {
// Experimental macros support. Will be documented after it's had some time
// in the wild.
require('babel-plugin-macros'),
// Necessary to include regardless of the environment because
// in practice some other transforms (such as object-rest-spread)
// don't work without it: https://github.com/babel/babel/issues/7215
[
require('@babel/plugin-transform-destructuring').default,
{
// Use loose mode for performance:
// https://github.com/facebook/create-react-app/issues/5602
loose: false,
selectiveLoose: [
'useState',
'useEffect',
'useContext',
'useReducer',
'useCallback',
'useMemo',
'useRef',
'useImperativeHandle',
'useLayoutEffect',
'useDebugValue',
],
},
],
// Disabled as it's handled automatically by preset-env, and `selectiveLoose` isn't
// yet merged into babel: https://github.com/babel/babel/pull/9486
// Related: https://github.com/facebook/create-react-app/pull/8215
// [
// require('@babel/plugin-transform-destructuring').default,
// {
// // Use loose mode for performance:
// // https://github.com/facebook/create-react-app/issues/5602
// loose: false,
// selectiveLoose: [
// 'useState',
// 'useEffect',
// 'useContext',
// 'useReducer',
// 'useCallback',
// 'useMemo',
// 'useRef',
// 'useImperativeHandle',
// 'useLayoutEffect',
// 'useDebugValue',
// ],
// },
// ],
// Turn on legacy decorators for TypeScript files
isTypeScriptEnabled && [
require('@babel/plugin-proposal-decorators').default,
@@ -156,15 +156,6 @@ module.exports = function(api, opts, env) {
],
// Adds Numeric Separators
require('@babel/plugin-proposal-numeric-separator').default,
// The following two plugins use Object.assign directly, instead of Babel's
// extends helper. Note that this assumes `Object.assign` is available.
// { ...todo, completed: true }
[
require('@babel/plugin-proposal-object-rest-spread').default,
{
useBuiltIns: true,
},
],
// Polyfills the runtime needed for async/await, generators, and friends
// https://babeljs.io/docs/en/babel-plugin-transform-runtime
[
@@ -194,15 +185,6 @@ module.exports = function(api, opts, env) {
removeImport: true,
},
],
// Adds syntax support for import()
require('@babel/plugin-syntax-dynamic-import').default,
// Adds syntax support for optional chaining (.?)
require('@babel/plugin-proposal-optional-chaining').default,
// Adds syntax support for default value using ?? operator
require('@babel/plugin-proposal-nullish-coalescing-operator').default,
isEnvTest &&
// Transform dynamic import to require
require('babel-plugin-dynamic-import-node'),
].filter(Boolean),
overrides: [
isFlowEnabled && {
55 changes: 27 additions & 28 deletions packages/babel-preset-react-app/dependencies.js
Original file line number Diff line number Diff line change
@@ -97,36 +97,40 @@ module.exports = function(api, opts) {
],
].filter(Boolean),
plugins: [
// Necessary to include regardless of the environment because
// in practice some other transforms (such as object-rest-spread)
// don't work without it: https://github.com/babel/babel/issues/7215
[
require('@babel/plugin-transform-destructuring').default,
{
// Use loose mode for performance:
// https://github.com/facebook/create-react-app/issues/5602
loose: false,
selectiveLoose: [
'useState',
'useEffect',
'useContext',
'useReducer',
'useCallback',
'useMemo',
'useRef',
'useImperativeHandle',
'useLayoutEffect',
'useDebugValue',
],
},
],
// Disabled as it's handled automatically by preset-env, and `selectiveLoose` isn't
// yet merged into babel: https://github.com/babel/babel/pull/9486
// Related: https://github.com/facebook/create-react-app/pull/8215
// [
// require('@babel/plugin-transform-destructuring').default,
// {
// // Use loose mode for performance:
// // https://github.com/facebook/create-react-app/issues/5602
// loose: false,
// selectiveLoose: [
// 'useState',
// 'useEffect',
// 'useContext',
// 'useReducer',
// 'useCallback',
// 'useMemo',
// 'useRef',
// 'useImperativeHandle',
// 'useLayoutEffect',
// 'useDebugValue',
// ],
// },
// ],
// Polyfills the runtime needed for async/await, generators, and friends
// https://babeljs.io/docs/en/babel-plugin-transform-runtime
[
require('@babel/plugin-transform-runtime').default,
{
corejs: false,
helpers: areHelpersEnabled,
// By default, babel assumes babel/runtime version 7.0.0-beta.0,
// explicitly resolving to match the provided helper functions.
// https://github.com/babel/babel/issues/10261
version: require('@babel/runtime/package.json').version,
regenerator: true,
// https://babeljs.io/docs/en/babel-plugin-transform-runtime#useesmodules
// We should turn this on once the lowest version of Node LTS
@@ -138,11 +142,6 @@ module.exports = function(api, opts) {
absoluteRuntime: absoluteRuntimePath,
},
],
// Adds syntax support for import()
require('@babel/plugin-syntax-dynamic-import').default,
isEnvTest &&
// Transform dynamic import to require
require('babel-plugin-dynamic-import-node'),
].filter(Boolean),
};
};
32 changes: 13 additions & 19 deletions packages/babel-preset-react-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "babel-preset-react-app",
"version": "9.1.0",
"version": "9.1.1",
"description": "Babel preset used by Create React App",
"repository": {
"type": "git",
@@ -21,24 +21,18 @@
"test.js"
],
"dependencies": {
"@babel/core": "7.7.4",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-decorators": "7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.7.4",
"@babel/plugin-proposal-numeric-separator": "7.7.4",
"@babel/plugin-proposal-object-rest-spread": "7.7.4",
"@babel/plugin-proposal-optional-chaining": "7.7.4",
"@babel/plugin-syntax-dynamic-import": "7.7.4",
"@babel/plugin-transform-destructuring": "7.7.4",
"@babel/plugin-transform-flow-strip-types": "7.7.4",
"@babel/plugin-transform-react-display-name": "7.7.4",
"@babel/plugin-transform-runtime": "7.7.4",
"@babel/preset-env": "7.7.4",
"@babel/preset-react": "7.7.4",
"@babel/preset-typescript": "7.7.4",
"@babel/runtime": "7.7.4",
"babel-plugin-dynamic-import-node": "2.3.0",
"babel-plugin-macros": "2.7.1",
"@babel/core": "7.8.4",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-decorators": "7.8.3",
"@babel/plugin-proposal-numeric-separator": "7.8.3",
"@babel/plugin-transform-flow-strip-types": "7.8.3",
"@babel/plugin-transform-react-display-name": "7.8.3",
"@babel/plugin-transform-runtime": "7.8.3",
"@babel/preset-env": "7.8.4",
"@babel/preset-react": "7.8.3",
"@babel/preset-typescript": "7.8.3",
"@babel/runtime": "7.8.4",
"babel-plugin-macros": "2.8.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24"
}
}
2 changes: 1 addition & 1 deletion packages/cra-template-typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cra-template-typescript",
"version": "1.0.0",
"version": "1.0.1",
"keywords": [
"react",
"create-react-app",
20 changes: 11 additions & 9 deletions packages/cra-template-typescript/template.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{
"dependencies": {
"@testing-library/react": "^9.3.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/user-event": "^7.1.2",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/jest": "^24.0.0",
"typescript": "~3.7.2"
"package": {
"dependencies": {
"@testing-library/react": "^9.3.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/user-event": "^7.1.2",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/jest": "^24.0.0",
"typescript": "~3.7.2"
}
}
}
Binary file modified packages/cra-template-typescript/template/public/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/cra-template-typescript/template/src/App.tsx
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ import React from 'react';
import logo from './logo.svg';
import './App.css';

const App: React.FC = () => {
const App = () => {
return (
<div className="App">
<header className="App-header">
2 changes: 1 addition & 1 deletion packages/cra-template/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cra-template",
"version": "1.0.0",
"version": "1.0.1",
"keywords": [
"react",
"create-react-app",
10 changes: 6 additions & 4 deletions packages/cra-template/template.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"dependencies": {
"@testing-library/react": "^9.3.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/user-event": "^7.1.2"
"package": {
"dependencies": {
"@testing-library/react": "^9.3.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/user-event": "^7.1.2"
}
}
}
Binary file modified packages/cra-template/template/public/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions packages/cra-template/template/public/robots.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
154 changes: 92 additions & 62 deletions packages/create-react-app/createReactApp.js
Original file line number Diff line number Diff line change
@@ -53,14 +53,6 @@ const validateProjectName = require('validate-npm-package-name');

const packageJson = require('./package.json');

// These files should be allowed to remain on a failed install,
// but then silently removed during the next create.
const errorLogFilePatterns = [
'npm-debug.log',
'yarn-error.log',
'yarn-debug.log',
];

let projectName;

const program = new commander.Command(packageJson.name)
@@ -156,6 +148,10 @@ const program = new commander.Command(packageJson.name)

if (program.info) {
console.log(chalk.bold('\nEnvironment Info:'));
console.log(
`\n current version of ${packageJson.name}: ${packageJson.version}`
);
console.log(` running from ${__dirname}`);
return envinfo
.run(
{
@@ -188,14 +184,6 @@ if (typeof projectName === 'undefined') {
process.exit(1);
}

function printValidationResults(results) {
if (typeof results !== 'undefined') {
results.forEach(error => {
console.error(chalk.red(` * ${error}`));
});
}
}

createApp(
projectName,
program.verbose,
@@ -243,6 +231,7 @@ function createApp(
if (!isSafeToCreateProjectIn(root, name)) {
process.exit(1);
}
console.log();

console.log(`Creating a new React app in ${chalk.green(root)}.`);
console.log();
@@ -444,10 +433,7 @@ function run(
.then(({ isOnline, packageInfo, templateInfo }) => {
let packageVersion = semver.coerce(packageInfo.version);

// This environment variable can be removed post-release.
const templatesVersionMinimum = process.env.CRA_INTERNAL_TEST
? '3.2.0'
: '3.3.0';
const templatesVersionMinimum = '3.3.0';

// Assume compatibility if we can't test the version.
if (!semver.valid(packageVersion)) {
@@ -587,7 +573,7 @@ function getInstallPackage(version, originalDirectory) {
if (validSemver) {
packageToInstall += `@${validSemver}`;
} else if (version) {
if (version[0] === '@' && version.indexOf('/') === -1) {
if (version[0] === '@' && !version.includes('/')) {
packageToInstall += version;
} else if (version.match(/^file:/)) {
packageToInstall = `file:${path.resolve(
@@ -654,10 +640,25 @@ function getTemplateInstallPackage(template, originalDirectory) {
const scope = packageMatch[1] || '';
const templateName = packageMatch[2];

const name = templateName.startsWith(templateToInstall)
? templateName
: `${templateToInstall}-${templateName}`;
templateToInstall = `${scope}${name}`;
if (
templateName === templateToInstall ||
templateName.startsWith(`${templateToInstall}-`)
) {
// Covers:
// - cra-template
// - @SCOPE/cra-template
// - cra-template-NAME
// - @SCOPE/cra-template-NAME
templateToInstall = `${scope}${templateName}`;
} else if (templateName.startsWith('@')) {
// Covers using @SCOPE only
templateToInstall = `${templateName}/${templateToInstall}`;
} else {
// Covers templates without the `cra-template` prefix:
// - NAME
// - @SCOPE/NAME
templateToInstall = `${scope}${templateToInstall}-${templateName}`;
}
}
}

@@ -739,7 +740,7 @@ function getPackageInfo(installPackage) {
);
return Promise.resolve({ name: assumedProjectName });
});
} else if (installPackage.indexOf('git+') === 0) {
} else if (installPackage.startsWith('git+')) {
// Pull package name out of git urls e.g:
// git+https://github.com/mycompany/react-scripts.git
// git+ssh://github.com/mycompany/react-scripts.git#v1.2.3
@@ -781,17 +782,25 @@ function checkNpmVersion() {
}

function checkYarnVersion() {
const minYarnPnp = '1.12.0';
let hasMinYarnPnp = false;
let yarnVersion = null;
try {
yarnVersion = execSync('yarnpkg --version')
.toString()
.trim();
let trimmedYarnVersion = /^(.+?)[-+].+$/.exec(yarnVersion);
if (trimmedYarnVersion) {
trimmedYarnVersion = trimmedYarnVersion.pop();
if (semver.valid(yarnVersion)) {
hasMinYarnPnp = semver.gte(yarnVersion, minYarnPnp);
} else {
// Handle non-semver compliant yarn version strings, which yarn currently
// uses for nightly builds. The regex truncates anything after the first
// dash. See #5362.
const trimmedYarnVersionMatch = /^(.+?)[-+].+$/.exec(yarnVersion);
if (trimmedYarnVersionMatch) {
const trimmedYarnVersion = trimmedYarnVersionMatch.pop();
hasMinYarnPnp = semver.gte(trimmedYarnVersion, minYarnPnp);
}
}
hasMinYarnPnp = semver.gte(trimmedYarnVersion || yarnVersion, '1.12.0');
} catch (err) {
// ignore
}
@@ -836,22 +845,29 @@ function checkAppName(appName) {
const validationResult = validateProjectName(appName);
if (!validationResult.validForNewPackages) {
console.error(
`Could not create a project called ${chalk.red(
`"${appName}"`
)} because of npm naming restrictions:`
chalk.red(
`Cannot create a project named ${chalk.green(
`"${appName}"`
)} because of npm naming restrictions:\n`
)
);
printValidationResults(validationResult.errors);
printValidationResults(validationResult.warnings);
[
...(validationResult.errors || []),
...(validationResult.warnings || []),
].forEach(error => {
console.error(chalk.red(` * ${error}`));
});
console.error(chalk.red('\nPlease choose a different project name.'));
process.exit(1);
}

// TODO: there should be a single place that holds the dependencies
const dependencies = ['react', 'react-dom', 'react-scripts'].sort();
if (dependencies.indexOf(appName) >= 0) {
if (dependencies.includes(appName)) {
console.error(
chalk.red(
`We cannot create a project called ${chalk.green(
appName
`Cannot create a project named ${chalk.green(
`"${appName}"`
)} because a dependency with the same name exists.\n` +
`Due to the way npm works, the following names are not allowed:\n\n`
) +
@@ -913,41 +929,57 @@ function setCaretRangeForRuntimeDeps(packageName) {
function isSafeToCreateProjectIn(root, name) {
const validFiles = [
'.DS_Store',
'Thumbs.db',
'.git',
'.gitattributes',
'.gitignore',
'.idea',
'README.md',
'LICENSE',
'.gitlab-ci.yml',
'.hg',
'.hgignore',
'.hgcheck',
'.hgignore',
'.idea',
'.npmignore',
'mkdocs.yml',
'docs',
'.travis.yml',
'.gitlab-ci.yml',
'.gitattributes',
'docs',
'LICENSE',
'README.md',
'mkdocs.yml',
'Thumbs.db',
];
console.log();
// These files should be allowed to remain on a failed install, but then
// silently removed during the next create.
const errorLogFilePatterns = [
'npm-debug.log',
'yarn-error.log',
'yarn-debug.log',
];
const isErrorLog = file => {
return errorLogFilePatterns.some(pattern => file.startsWith(pattern));
};

const conflicts = fs
.readdirSync(root)
.filter(file => !validFiles.includes(file))
// IntelliJ IDEA creates module files before CRA is launched
.filter(file => !/\.iml$/.test(file))
// Don't treat log files from previous installation as conflicts
.filter(
file => !errorLogFilePatterns.some(pattern => file.indexOf(pattern) === 0)
);
.filter(file => !isErrorLog(file));

if (conflicts.length > 0) {
console.log(
`The directory ${chalk.green(name)} contains files that could conflict:`
);
console.log();
for (const file of conflicts) {
console.log(` ${file}`);
try {
const stats = fs.lstatSync(path.join(root, file));
if (stats.isDirectory()) {
console.log(` ${chalk.blue(`${file}/`)}`);
} else {
console.log(` ${file}`);
}
} catch (e) {
console.log(` ${file}`);
}
}
console.log();
console.log(
@@ -957,15 +989,11 @@ function isSafeToCreateProjectIn(root, name) {
return false;
}

// Remove any remnant files from a previous installation
const currentFiles = fs.readdirSync(path.join(root));
currentFiles.forEach(file => {
errorLogFilePatterns.forEach(errorLogFilePattern => {
// This will catch `(npm-debug|yarn-error|yarn-debug).log*` files
if (file.indexOf(errorLogFilePattern) === 0) {
fs.removeSync(path.join(root, file));
}
});
// Remove any log files from a previous installation.
fs.readdirSync(root).forEach(file => {
if (isErrorLog(file)) {
fs.removeSync(path.join(root, file));
}
});
return true;
}
@@ -985,6 +1013,8 @@ function getProxy() {
}
}
}

// See https://github.com/facebook/create-react-app/pull/3355
function checkThatNpmCanReadCwd() {
const cwd = process.cwd();
let childOutput = null;
@@ -1009,7 +1039,7 @@ function checkThatNpmCanReadCwd() {
// "; cwd = C:\path\to\current\dir" (unquoted)
// I couldn't find an easier way to get it.
const prefix = '; cwd = ';
const line = lines.find(line => line.indexOf(prefix) === 0);
const line = lines.find(line => line.startsWith(prefix));
if (typeof line !== 'string') {
// Fail gracefully. They could remove it.
return true;
14 changes: 7 additions & 7 deletions packages/create-react-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-react-app",
"version": "3.3.0",
"version": "3.3.1",
"keywords": [
"react"
],
@@ -26,16 +26,16 @@
"create-react-app": "./index.js"
},
"dependencies": {
"chalk": "2.4.2",
"commander": "2.20.0",
"cross-spawn": "6.0.5",
"chalk": "3.0.0",
"commander": "4.1.0",
"cross-spawn": "7.0.1",
"envinfo": "7.5.0",
"fs-extra": "7.0.1",
"fs-extra": "8.1.0",
"hyperquest": "2.1.3",
"inquirer": "6.5.0",
"inquirer": "7.0.4",
"semver": "6.3.0",
"tar-pack": "3.4.1",
"tmp": "0.0.33",
"tmp": "0.1.0",
"validate-npm-package-name": "3.0.0"
}
}
2,596 changes: 1,385 additions & 1,211 deletions packages/create-react-app/yarn.lock.cached

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion packages/eslint-config-react-app/index.js
Original file line number Diff line number Diff line change
@@ -81,7 +81,6 @@ module.exports = {
'@typescript-eslint/consistent-type-assertions': 'warn',
'no-array-constructor': 'off',
'@typescript-eslint/no-array-constructor': 'warn',
'@typescript-eslint/no-namespace': 'error',
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': [
'warn',
2 changes: 1 addition & 1 deletion packages/eslint-config-react-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-react-app",
"version": "5.1.0",
"version": "5.2.0",
"description": "ESLint configuration used by Create React App",
"repository": {
"type": "git",
4 changes: 2 additions & 2 deletions packages/react-app-polyfill/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-app-polyfill",
"version": "1.0.5",
"version": "1.0.6",
"description": "Polyfills for various browsers including commonly used language features",
"repository": {
"type": "git",
@@ -21,7 +21,7 @@
"stable.js"
],
"dependencies": {
"core-js": "^3.4.1",
"core-js": "^3.5.0",
"object-assign": "^4.1.1",
"promise": "^8.0.3",
"raf": "^3.4.1",
2 changes: 1 addition & 1 deletion packages/react-dev-utils/README.md
Original file line number Diff line number Diff line change
@@ -414,5 +414,5 @@ Returns a cache identifier (string) consisting of the specified environment and
```js
var getCacheIdentifier = require('react-dev-utils/getCacheIdentifier');

getCacheIdentifier('prod', ['react-dev-utils', 'chalk']); // # => 'prod:react-dev-utils@5.0.0:chalk@2.4.1'
getCacheIdentifier('prod', ['react-dev-utils', 'chalk']); // # => 'prod:react-dev-utils@5.0.0:chalk@3.0.0'
```
2 changes: 1 addition & 1 deletion packages/react-dev-utils/browsersHelper.js
Original file line number Diff line number Diff line change
@@ -67,7 +67,7 @@ function checkBrowsers(dir, isInteractive, retry = true) {
}

return (
pkgUp(dir)
pkgUp({ cwd: dir })
.then(filePath => {
if (filePath == null) {
return Promise.reject();
2 changes: 1 addition & 1 deletion packages/react-dev-utils/openBrowser.js
Original file line number Diff line number Diff line change
@@ -104,7 +104,7 @@ function startBrowserProcess(browser, url, args) {
// Fallback to open
// (It will always open new tab)
try {
var options = { app: browser, wait: false, url: true };
var options = { app: browser, wait: false };
open(url, options).catch(() => {}); // Prevent `unhandledRejection` error.
return true;
} catch (err) {
30 changes: 15 additions & 15 deletions packages/react-dev-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-dev-utils",
"version": "10.0.0",
"version": "10.1.0",
"description": "Webpack utilities used by Create React App",
"repository": {
"type": "git",
@@ -50,33 +50,33 @@
"webpackHotDevClient.js"
],
"dependencies": {
"@babel/code-frame": "7.5.5",
"@babel/code-frame": "7.8.3",
"address": "1.1.2",
"browserslist": "4.7.3",
"chalk": "2.4.2",
"cross-spawn": "6.0.5",
"browserslist": "4.8.6",
"chalk": "3.0.0",
"cross-spawn": "7.0.1",
"detect-port-alt": "1.1.6",
"escape-string-regexp": "1.0.5",
"filesize": "3.6.1",
"find-up": "3.0.0",
"fork-ts-checker-webpack-plugin": "3.1.0",
"escape-string-regexp": "2.0.0",
"filesize": "6.0.1",
"find-up": "4.1.0",
"fork-ts-checker-webpack-plugin": "3.1.1",
"global-modules": "2.0.0",
"globby": "8.0.2",
"gzip-size": "5.1.1",
"immer": "1.10.0",
"inquirer": "6.5.0",
"inquirer": "7.0.4",
"is-root": "2.1.0",
"loader-utils": "1.2.3",
"open": "^7.0.0",
"pkg-up": "2.0.0",
"react-error-overlay": "^6.0.4",
"open": "^6.4.0",
"pkg-up": "3.1.0",
"react-error-overlay": "^6.0.5",
"recursive-readdir": "2.2.2",
"shell-quote": "1.7.2",
"strip-ansi": "5.2.0",
"strip-ansi": "6.0.0",
"text-table": "0.2.0"
},
"devDependencies": {
"cross-env": "^5.2.0",
"cross-env": "^6.0.3",
"jest": "24.9.0"
},
"scripts": {
2 changes: 1 addition & 1 deletion packages/react-dev-utils/typescriptFormatter.js
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ function formatter(message, useColors) {
}
: message;

const colors = new chalk.constructor({ enabled: useColors });
const colors = new chalk.Instance({ enabled: useColors });
const messageColor = message.isWarningSeverity() ? colors.yellow : colors.red;
const fileAndNumberColor = colors.bold.cyan;

3 changes: 2 additions & 1 deletion packages/react-dev-utils/webpackHotDevClient.js
Original file line number Diff line number Diff line change
@@ -59,11 +59,12 @@ if (module.hot && typeof module.hot.dispose === 'function') {
// Connect to WebpackDevServer via a socket.
var connection = new WebSocket(
url.format({
protocol: 'ws',
protocol: window.location.protocol === 'https:' ? 'wss' : 'ws',
hostname: window.location.hostname,
port: window.location.port,
// Hardcoded in WebpackDevServer
pathname: '/sockjs-node',
slashes: true,
})
);

36 changes: 18 additions & 18 deletions packages/react-error-overlay/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-error-overlay",
"version": "6.0.4",
"version": "6.0.5",
"description": "An overlay for displaying stack frames.",
"main": "lib/index.js",
"sideEffects": false,
@@ -34,36 +34,36 @@
"lib/index.js"
],
"devDependencies": {
"@babel/code-frame": "7.5.5",
"@babel/core": "7.7.4",
"@babel/code-frame": "7.8.3",
"@babel/core": "7.8.4",
"anser": "1.4.9",
"babel-eslint": "10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "8.0.6",
"babel-preset-react-app": "^9.1.0",
"chalk": "^2.4.2",
"chokidar": "^2.1.2",
"cross-env": "5.2.1",
"babel-preset-react-app": "^9.1.1",
"chalk": "3.0.0",
"chokidar": "^3.3.0",
"cross-env": "6.0.3",
"eslint": "^6.1.0",
"eslint-config-react-app": "^5.1.0",
"eslint-plugin-flowtype": "3.13.0",
"eslint-plugin-import": "2.18.2",
"eslint-config-react-app": "^5.2.0",
"eslint-plugin-flowtype": "4.5.2",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"flow-bin": "^0.110.0",
"eslint-plugin-react": "7.17.0",
"flow-bin": "^0.116.0",
"html-entities": "1.2.1",
"jest": "24.9.0",
"jest-fetch-mock": "2.1.2",
"object-assign": "4.1.1",
"promise": "8.0.3",
"raw-loader": "^1.0.0",
"react": "^16.11.0",
"react-app-polyfill": "^1.0.5",
"react-dom": "^16.11.0",
"rimraf": "^2.6.3",
"raw-loader": "^3.1.0",
"react": "^16.12.0",
"react-app-polyfill": "^1.0.6",
"react-dom": "^16.12.0",
"rimraf": "^3.0.0",
"settle-promise": "1.0.0",
"source-map": "0.5.6",
"terser-webpack-plugin": "1.4.1",
"terser-webpack-plugin": "2.3.4",
"webpack": "^4.35.0"
},
"jest": {
Original file line number Diff line number Diff line change
@@ -79,7 +79,7 @@ class RuntimeErrorContainer extends PureComponent<Props, State> {
/>
<Footer
line1="This screen is visible only in development. It will not appear if the app crashes in production."
line2="Open your browser’s developer console to further inspect this error."
line2="Open your browser’s developer console to further inspect this error. Click the 'X' or hit ESC to dismiss this message."
/>
</ErrorOverlay>
);
7 changes: 5 additions & 2 deletions packages/react-scripts/config/webpack.config.js
Original file line number Diff line number Diff line change
@@ -269,6 +269,9 @@ module.exports = function(webpackEnv) {
}
: false,
},
cssProcessorPluginOptions: {
preset: ['default', { minifyFontValues: { removeQuotes: false } }]
}
}),
],
// Automatically split vendor and commons
@@ -528,7 +531,7 @@ module.exports = function(webpackEnv) {
exclude: sassModuleRegex,
use: getStyleLoaders(
{
importLoaders: 2,
importLoaders: 3,
sourceMap: isEnvProduction && shouldUseSourceMap,
},
'sass-loader'
@@ -545,7 +548,7 @@ module.exports = function(webpackEnv) {
test: sassModuleRegex,
use: getStyleLoaders(
{
importLoaders: 2,
importLoaders: 3,
sourceMap: isEnvProduction && shouldUseSourceMap,
modules: {
getLocalIdent: getCSSModuleLocalIdent,
16 changes: 9 additions & 7 deletions packages/react-scripts/fixtures/kitchensink/template.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"dependencies": {
"bootstrap": "4.3.1",
"jest": "24.9.0",
"node-sass": "4.12.0",
"normalize.css": "7.0.0",
"prop-types": "15.7.2",
"test-integrity": "2.0.1"
"package": {
"dependencies": {
"bootstrap": "4.3.1",
"jest": "24.9.0",
"node-sass": "4.12.0",
"normalize.css": "7.0.0",
"prop-types": "15.7.2",
"test-integrity": "2.0.1"
}
}
}
4 changes: 3 additions & 1 deletion packages/react-scripts/lib/react-app.d.ts
Original file line number Diff line number Diff line change
@@ -42,7 +42,9 @@ declare module '*.webp' {
declare module '*.svg' {
import * as React from 'react';

export const ReactComponent: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
export const ReactComponent: React.FunctionComponent<React.SVGProps<
SVGSVGElement
> & { title?: string }>;

const src: string;
export default src;
54 changes: 27 additions & 27 deletions packages/react-scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-scripts",
"version": "3.3.0",
"version": "3.3.1",
"description": "Configuration and scripts for Create React App.",
"repository": {
"type": "git",
@@ -28,62 +28,62 @@
},
"types": "./lib/react-app.d.ts",
"dependencies": {
"@babel/core": "7.7.4",
"@babel/core": "7.8.4",
"@svgr/webpack": "4.3.3",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"babel-eslint": "10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "8.0.6",
"babel-plugin-named-asset-import": "^0.3.5",
"babel-preset-react-app": "^9.1.0",
"babel-plugin-named-asset-import": "^0.3.6",
"babel-preset-react-app": "^9.1.1",
"camelcase": "^5.3.1",
"case-sensitive-paths-webpack-plugin": "2.2.0",
"css-loader": "3.2.0",
"case-sensitive-paths-webpack-plugin": "2.3.0",
"css-loader": "3.4.2",
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0",
"eslint": "^6.6.0",
"eslint-config-react-app": "^5.1.0",
"eslint-loader": "3.0.2",
"eslint-plugin-flowtype": "3.13.0",
"eslint-plugin-import": "2.18.2",
"eslint-config-react-app": "^5.2.0",
"eslint-loader": "3.0.3",
"eslint-plugin-flowtype": "4.6.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react": "7.18.0",
"eslint-plugin-react-hooks": "^1.6.1",
"file-loader": "4.3.0",
"fs-extra": "^8.1.0",
"html-webpack-plugin": "4.0.0-beta.5",
"html-webpack-plugin": "4.0.0-beta.11",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"jest-environment-jsdom-fourteen": "0.1.0",
"jest-environment-jsdom-fourteen": "1.0.1",
"jest-resolve": "24.9.0",
"jest-watch-typeahead": "0.4.2",
"mini-css-extract-plugin": "0.8.0",
"mini-css-extract-plugin": "0.9.0",
"optimize-css-assets-webpack-plugin": "5.0.3",
"pnp-webpack-plugin": "1.5.0",
"pnp-webpack-plugin": "1.6.0",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"postcss-normalize": "8.0.1",
"postcss-preset-env": "6.7.0",
"postcss-safe-parser": "4.0.1",
"react-app-polyfill": "^1.0.5",
"react-dev-utils": "^10.0.0",
"resolve": "1.12.2",
"react-app-polyfill": "^1.0.6",
"react-dev-utils": "^10.1.0",
"resolve": "1.15.0",
"resolve-url-loader": "3.1.1",
"sass-loader": "8.0.0",
"sass-loader": "8.0.2",
"semver": "6.3.0",
"style-loader": "1.0.0",
"terser-webpack-plugin": "2.2.1",
"style-loader": "1.1.3",
"terser-webpack-plugin": "2.3.4",
"ts-pnp": "1.1.5",
"url-loader": "2.3.0",
"webpack": "4.41.2",
"webpack-dev-server": "3.9.0",
"webpack": "4.41.5",
"webpack-dev-server": "3.10.1",
"webpack-manifest-plugin": "2.2.0",
"workbox-webpack-plugin": "4.3.1"
},
"devDependencies": {
"react": "^16.11.0",
"react-dom": "^16.11.0"
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"optionalDependencies": {
"fsevents": "2.1.2"
76 changes: 62 additions & 14 deletions packages/react-scripts/scripts/init.js
Original file line number Diff line number Diff line change
@@ -118,11 +118,55 @@ module.exports = function(
templateJson = require(templateJsonPath);
}

const templatePackage = templateJson.package || {};

// Keys to ignore in templatePackage
const templatePackageBlacklist = [
'name',
'version',
'description',
'keywords',
'bugs',
'license',
'author',
'contributors',
'files',
'main',
'browser',
'bin',
'man',
'directories',
'repository',
'devDependencies',
'peerDependencies',
'bundledDependencies',
'optionalDependencies',
'engineStrict',
'os',
'cpu',
'preferGlobal',
'private',
'publishConfig',
];

// Keys from templatePackage that will be merged with appPackage
const templatePackageToMerge = ['dependencies', 'scripts'];

// Keys from templatePackage that will be added to appPackage,
// replacing any existing entries.
const templatePackageToReplace = Object.keys(templatePackage).filter(key => {
return (
!templatePackageBlacklist.includes(key) &&
!templatePackageToMerge.includes(key)
);
});

// Copy over some of the devDependencies
appPackage.dependencies = appPackage.dependencies || {};

// Setup the script rules
const templateScripts = templateJson.scripts || {};
// TODO: deprecate 'scripts' key directly on templateJson
const templateScripts = templatePackage.scripts || templateJson.scripts || {};
appPackage.scripts = Object.assign(
{
start: 'react-scripts start',
@@ -152,6 +196,11 @@ module.exports = function(
// Setup the browsers list
appPackage.browserslist = defaultBrowsers;

// Add templatePackage keys/values to appPackage, replacing existing entries
templatePackageToReplace.forEach(key => {
appPackage[key] = templatePackage[key];
});

fs.writeFileSync(
path.join(appPath, 'package.json'),
JSON.stringify(appPackage, null, 2) + os.EOL
@@ -190,23 +239,20 @@ module.exports = function(
}
}

// Rename gitignore after the fact to prevent npm from renaming it to .npmignore
// See: https://github.com/npm/npm/issues/1862
try {
const gitignoreExists = fs.existsSync(path.join(appPath, '.gitignore'));
if (gitignoreExists) {
// Append if there's already a `.gitignore` file there
const data = fs.readFileSync(path.join(appPath, 'gitignore'));
fs.appendFileSync(path.join(appPath, '.gitignore'), data);
fs.unlinkSync(path.join(appPath, 'gitignore'));
} else {
// Rename gitignore after the fact to prevent npm from renaming it to .npmignore
// See: https://github.com/npm/npm/issues/1862
fs.moveSync(
path.join(appPath, 'gitignore'),
path.join(appPath, '.gitignore'),
[]
);
} catch (err) {
// Append if there's already a `.gitignore` file there
if (err.code === 'EEXIST') {
const data = fs.readFileSync(path.join(appPath, 'gitignore'));
fs.appendFileSync(path.join(appPath, '.gitignore'), data);
fs.unlinkSync(path.join(appPath, 'gitignore'));
} else {
throw err;
}
}

let command;
@@ -224,7 +270,9 @@ module.exports = function(
}

// Install additional template dependencies, if present
const templateDependencies = templateJson.dependencies;
// TODO: deprecate 'dependencies' key directly on templateJson
const templateDependencies =
templatePackage.dependencies || templateJson.dependencies;
if (templateDependencies) {
args = args.concat(
Object.keys(templateDependencies).map(key => {
2 changes: 1 addition & 1 deletion tasks/e2e-simple.sh
Original file line number Diff line number Diff line change
@@ -98,7 +98,7 @@ startLocalRegistry "$root_path"/tasks/verdaccio.yaml

cd packages/react-error-overlay/
yarn test
if [ $AGENT_OS != 'Windows_NT' ]; then
if [ "$AGENT_OS" != 'Windows_NT' ]; then
# Flow started hanging on Windows build agents
yarn flow
fi
2 changes: 1 addition & 1 deletion tasks/local-test.sh
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ function print_help {
echo "OPTIONS:"
echo " --node-version <version> the node version to use while testing [12]"
echo " --git-branch <branch> the git branch to checkout for testing [the current one]"
echo " --test-suite <suite> which test suite to use ('simple', installs', 'kitchensink', 'kitchensink-eject', 'all') ['all']"
echo " --test-suite <suite> which test suite to use ('all', 'behavior', installs', 'kitchensink', 'kitchensink-eject', 'simple') ['all']"
echo " --interactive gain a bash shell after the test run"
echo " --help print this message and exit"
echo ""
7 changes: 7 additions & 0 deletions test/fixtures/typescript/src/App.ts
Original file line number Diff line number Diff line change
@@ -27,4 +27,11 @@ function propertyDecorator(target: any, key: string) {
};
}

declare namespace MyNamespace {
interface MyType {
foo: string;
bar: (n: number) => void;
}
}

export default App;