Full Code of facebook/create-react-app for AI

main 6254386531d2 cached
494 files
4.0 MB
1.1M tokens
1688 symbols
3 requests
Download .txt
Showing preview only (4,276K chars total). Download the full file or copy to clipboard to get everything.
Repository: facebook/create-react-app
Branch: main
Commit: 6254386531d2
Files: 494
Total size: 4.0 MB

Directory structure:
gitextract_kz2765w0/

├── .alexignore
├── .alexrc
├── .eslintignore
├── .eslintrc.json
├── .gitattributes
├── .github/
│   ├── CODEOWNERS
│   ├── FUNDING.yml
│   ├── ISSUE_TEMPLATE/
│   │   ├── bug_report.md
│   │   ├── proposal.md
│   │   └── question.md
│   ├── PULL_REQUEST_TEMPLATE.md
│   ├── lock.yml
│   ├── stale.yml
│   └── workflows/
│       ├── build-and-test.yml
│       ├── e2e-base.yml
│       └── lint.yml
├── .gitignore
├── .prettierignore
├── .prettierrc
├── CHANGELOG-0.x.md
├── CHANGELOG-1.x.md
├── CHANGELOG-2.x.md
├── CHANGELOG-3.x.md
├── CHANGELOG-4.x.md
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── SECURITY.md
├── docusaurus/
│   ├── docs/
│   │   ├── adding-a-css-modules-stylesheet.md
│   │   ├── adding-a-router.md
│   │   ├── adding-a-sass-stylesheet.md
│   │   ├── adding-a-stylesheet.md
│   │   ├── adding-bootstrap.md
│   │   ├── adding-css-reset.md
│   │   ├── adding-custom-environment-variables.md
│   │   ├── adding-flow.md
│   │   ├── adding-images-fonts-and-files.md
│   │   ├── adding-relay.md
│   │   ├── adding-typescript.md
│   │   ├── advanced-configuration.md
│   │   ├── alternatives-to-ejecting.md
│   │   ├── analyzing-the-bundle-size.md
│   │   ├── available-scripts.md
│   │   ├── can-i-use-decorators.md
│   │   ├── code-splitting.md
│   │   ├── custom-templates.md
│   │   ├── debugging-tests.md
│   │   ├── deployment.md
│   │   ├── developing-components-in-isolation.md
│   │   ├── documentation-intro.md
│   │   ├── fetching-data-with-ajax-requests.md
│   │   ├── folder-structure.md
│   │   ├── getting-started.md
│   │   ├── importing-a-component.md
│   │   ├── installing-a-dependency.md
│   │   ├── integrating-with-an-api-backend.md
│   │   ├── loading-graphql-files.md
│   │   ├── making-a-progressive-web-app.md
│   │   ├── measuring-performance.md
│   │   ├── post-processing-css.md
│   │   ├── pre-rendering-into-static-html-files.md
│   │   ├── production-build.md
│   │   ├── proxying-api-requests-in-development.md
│   │   ├── running-tests.md
│   │   ├── setting-up-your-editor.md
│   │   ├── supported-browsers-features.md
│   │   ├── title-and-meta-tags.md
│   │   ├── troubleshooting.md
│   │   ├── updating-to-new-releases.md
│   │   ├── using-global-variables.md
│   │   ├── using-https-in-development.md
│   │   └── using-the-public-folder.md
│   └── website/
│       ├── .gitignore
│       ├── README.md
│       ├── docusaurus.config.js
│       ├── package.json
│       ├── sidebars.json
│       ├── src/
│       │   ├── css/
│       │   │   └── custom.css
│       │   └── pages/
│       │       ├── index.js
│       │       └── styles.module.css
│       └── static/
│           └── CNAME
├── lerna.json
├── netlify.toml
├── package.json
├── packages/
│   ├── babel-plugin-named-asset-import/
│   │   ├── LICENSE
│   │   ├── index.js
│   │   ├── index.test.js
│   │   └── package.json
│   ├── babel-preset-react-app/
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── create.js
│   │   ├── dependencies.js
│   │   ├── dev.js
│   │   ├── index.js
│   │   ├── package.json
│   │   ├── prod.js
│   │   ├── test.js
│   │   └── webpack-overrides.js
│   ├── confusing-browser-globals/
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── index.js
│   │   ├── package.json
│   │   └── test.js
│   ├── cra-template/
│   │   ├── README.md
│   │   ├── package.json
│   │   ├── template/
│   │   │   ├── README.md
│   │   │   ├── gitignore
│   │   │   ├── public/
│   │   │   │   ├── index.html
│   │   │   │   ├── manifest.json
│   │   │   │   └── robots.txt
│   │   │   └── src/
│   │   │       ├── App.css
│   │   │       ├── App.js
│   │   │       ├── App.test.js
│   │   │       ├── index.css
│   │   │       ├── index.js
│   │   │       ├── reportWebVitals.js
│   │   │       └── setupTests.js
│   │   └── template.json
│   ├── cra-template-typescript/
│   │   ├── README.md
│   │   ├── package.json
│   │   ├── template/
│   │   │   ├── README.md
│   │   │   ├── gitignore
│   │   │   ├── public/
│   │   │   │   ├── index.html
│   │   │   │   ├── manifest.json
│   │   │   │   └── robots.txt
│   │   │   └── src/
│   │   │       ├── App.css
│   │   │       ├── App.test.tsx
│   │   │       ├── App.tsx
│   │   │       ├── index.css
│   │   │       ├── index.tsx
│   │   │       ├── reportWebVitals.ts
│   │   │       └── setupTests.ts
│   │   └── template.json
│   ├── create-react-app/
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── __tests__/
│   │   │   ├── .eslintrc
│   │   │   └── getTemplateInstallPackage.test.js
│   │   ├── createReactApp.js
│   │   ├── index.js
│   │   └── package.json
│   ├── eslint-config-react-app/
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── base.js
│   │   ├── index.js
│   │   ├── jest.js
│   │   └── package.json
│   ├── react-app-polyfill/
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── ie11.js
│   │   ├── ie9.js
│   │   ├── jsdom.js
│   │   ├── package.json
│   │   └── stable.js
│   ├── react-dev-utils/
│   │   ├── FileSizeReporter.js
│   │   ├── ForkTsCheckerWarningWebpackPlugin.js
│   │   ├── ForkTsCheckerWebpackPlugin.js
│   │   ├── InlineChunkHtmlPlugin.js
│   │   ├── InterpolateHtmlPlugin.js
│   │   ├── LICENSE
│   │   ├── ModuleNotFoundPlugin.js
│   │   ├── ModuleScopePlugin.js
│   │   ├── README.md
│   │   ├── WebpackDevServerUtils.js
│   │   ├── __tests__/
│   │   │   ├── .eslintrc
│   │   │   ├── getCSSModuleLocalIdent.test.js
│   │   │   ├── getPublicUrlOrPath.test.js
│   │   │   └── ignoredFiles.test.js
│   │   ├── browsersHelper.js
│   │   ├── chalk.js
│   │   ├── checkRequiredFiles.js
│   │   ├── clearConsole.js
│   │   ├── crossSpawn.js
│   │   ├── errorOverlayMiddleware.js
│   │   ├── eslintFormatter.js
│   │   ├── evalSourceMapMiddleware.js
│   │   ├── formatWebpackMessages.js
│   │   ├── getCSSModuleLocalIdent.js
│   │   ├── getCacheIdentifier.js
│   │   ├── getProcessForPort.js
│   │   ├── getPublicUrlOrPath.js
│   │   ├── globby.js
│   │   ├── ignoredFiles.js
│   │   ├── immer.js
│   │   ├── launchEditor.js
│   │   ├── launchEditorEndpoint.js
│   │   ├── noopServiceWorkerMiddleware.js
│   │   ├── openBrowser.js
│   │   ├── openChrome.applescript
│   │   ├── package.json
│   │   ├── printBuildError.js
│   │   ├── printHostingInstructions.js
│   │   ├── redirectServedPathMiddleware.js
│   │   ├── refreshOverlayInterop.js
│   │   └── webpackHotDevClient.js
│   ├── react-error-overlay/
│   │   ├── .babelrc
│   │   ├── .flowconfig
│   │   ├── .gitattributes
│   │   ├── .gitignore
│   │   ├── .npmignore
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── build.js
│   │   ├── fixtures/
│   │   │   ├── bundle-default.json
│   │   │   ├── bundle.json
│   │   │   ├── bundle.mjs
│   │   │   ├── bundle2.json
│   │   │   ├── bundle_u.mjs
│   │   │   ├── inline.es6.mjs
│   │   │   ├── inline.mjs
│   │   │   └── junk-inline.mjs
│   │   ├── flow/
│   │   │   └── env.js
│   │   ├── package.json
│   │   ├── src/
│   │   │   ├── __tests__/
│   │   │   │   ├── __snapshots__/
│   │   │   │   │   ├── lines-around.js.snap
│   │   │   │   │   ├── script-lines.js.snap
│   │   │   │   │   ├── stack-frame.js.snap
│   │   │   │   │   └── unmapper.js.snap
│   │   │   │   ├── extract-source-map.js
│   │   │   │   ├── get-source-map.js
│   │   │   │   ├── lines-around.js
│   │   │   │   ├── mapper.js
│   │   │   │   ├── parser/
│   │   │   │   │   ├── __snapshots__/
│   │   │   │   │   │   ├── chrome.js.snap
│   │   │   │   │   │   ├── firefox.js.snap
│   │   │   │   │   │   ├── react.js.snap
│   │   │   │   │   │   └── safari.js.snap
│   │   │   │   │   ├── chrome.js
│   │   │   │   │   ├── firefox.js
│   │   │   │   │   ├── generic.js
│   │   │   │   │   ├── react.js
│   │   │   │   │   └── safari.js
│   │   │   │   ├── script-lines.js
│   │   │   │   ├── setupJest.js
│   │   │   │   ├── stack-frame.js
│   │   │   │   └── unmapper.js
│   │   │   ├── components/
│   │   │   │   ├── CloseButton.js
│   │   │   │   ├── CodeBlock.js
│   │   │   │   ├── Collapsible.js
│   │   │   │   ├── ErrorOverlay.js
│   │   │   │   ├── Footer.js
│   │   │   │   ├── Header.js
│   │   │   │   └── NavigationBar.js
│   │   │   ├── containers/
│   │   │   │   ├── CompileErrorContainer.js
│   │   │   │   ├── RuntimeError.js
│   │   │   │   ├── RuntimeErrorContainer.js
│   │   │   │   ├── StackFrame.js
│   │   │   │   ├── StackFrameCodeBlock.js
│   │   │   │   └── StackTrace.js
│   │   │   ├── effects/
│   │   │   │   ├── proxyConsole.js
│   │   │   │   ├── stackTraceLimit.js
│   │   │   │   ├── unhandledError.js
│   │   │   │   └── unhandledRejection.js
│   │   │   ├── iframeScript.js
│   │   │   ├── index.js
│   │   │   ├── listenToRuntimeErrors.js
│   │   │   ├── styles.js
│   │   │   └── utils/
│   │   │       ├── dom/
│   │   │       │   ├── absolutifyCaret.js
│   │   │       │   └── css.js
│   │   │       ├── generateAnsiHTML.js
│   │   │       ├── getLinesAround.js
│   │   │       ├── getPrettyURL.js
│   │   │       ├── getSourceMap.js
│   │   │       ├── getStackFrames.js
│   │   │       ├── isBultinErrorName.js
│   │   │       ├── isInternalFile.js
│   │   │       ├── mapper.js
│   │   │       ├── parseCompileError.js
│   │   │       ├── parser.js
│   │   │       ├── stack-frame.js
│   │   │       ├── unmapper.js
│   │   │       └── warnings.js
│   │   ├── webpack.config.iframe.js
│   │   └── webpack.config.js
│   └── react-scripts/
│       ├── .npmignore
│       ├── LICENSE
│       ├── README.md
│       ├── bin/
│       │   └── react-scripts.js
│       ├── config/
│       │   ├── env.js
│       │   ├── getHttpsConfig.js
│       │   ├── jest/
│       │   │   ├── babelTransform.js
│       │   │   ├── cssTransform.js
│       │   │   └── fileTransform.js
│       │   ├── modules.js
│       │   ├── paths.js
│       │   ├── webpack/
│       │   │   └── persistentCache/
│       │   │       └── createEnvironmentHash.js
│       │   ├── webpack.config.js
│       │   └── webpackDevServer.config.js
│       ├── fixtures/
│       │   └── kitchensink/
│       │       ├── package.json
│       │       ├── template/
│       │       │   ├── .flowconfig
│       │       │   ├── README.md
│       │       │   ├── gitignore
│       │       │   ├── integration/
│       │       │   │   ├── config.test.js
│       │       │   │   ├── env.test.js
│       │       │   │   ├── initDOM.js
│       │       │   │   ├── syntax.test.js
│       │       │   │   └── webpack.test.js
│       │       │   ├── jest.integration.config.js
│       │       │   ├── jest.transform.js
│       │       │   ├── jsconfig.json
│       │       │   ├── public/
│       │       │   │   └── index.html
│       │       │   └── src/
│       │       │       ├── App.js
│       │       │       ├── absoluteLoad.js
│       │       │       ├── features/
│       │       │       │   ├── config/
│       │       │       │   │   ├── BaseUrl.js
│       │       │       │   │   └── BaseUrl.test.js
│       │       │       │   ├── env/
│       │       │       │   │   ├── ExpandEnvVariables.js
│       │       │       │   │   ├── ExpandEnvVariables.test.js
│       │       │       │   │   ├── FileEnvVariables.js
│       │       │       │   │   ├── FileEnvVariables.test.js
│       │       │       │   │   ├── PublicUrl.js
│       │       │       │   │   ├── PublicUrl.test.js
│       │       │       │   │   ├── ShellEnvVariables.js
│       │       │       │   │   └── ShellEnvVariables.test.js
│       │       │       │   ├── syntax/
│       │       │       │   │   ├── ArrayDestructuring.js
│       │       │       │   │   ├── ArrayDestructuring.test.js
│       │       │       │   │   ├── ArraySpread.js
│       │       │       │   │   ├── ArraySpread.test.js
│       │       │       │   │   ├── AsyncAwait.js
│       │       │       │   │   ├── AsyncAwait.test.js
│       │       │       │   │   ├── ClassProperties.js
│       │       │       │   │   ├── ClassProperties.test.js
│       │       │       │   │   ├── ComputedProperties.js
│       │       │       │   │   ├── ComputedProperties.test.js
│       │       │       │   │   ├── CustomInterpolation.js
│       │       │       │   │   ├── CustomInterpolation.test.js
│       │       │       │   │   ├── DefaultParameters.js
│       │       │       │   │   ├── DefaultParameters.test.js
│       │       │       │   │   ├── DestructuringAndAwait.js
│       │       │       │   │   ├── DestructuringAndAwait.test.js
│       │       │       │   │   ├── Generators.js
│       │       │       │   │   ├── Generators.test.js
│       │       │       │   │   ├── NullishCoalescing.js
│       │       │       │   │   ├── NullishCoalescing.test.js
│       │       │       │   │   ├── ObjectDestructuring.js
│       │       │       │   │   ├── ObjectDestructuring.test.js
│       │       │       │   │   ├── ObjectSpread.js
│       │       │       │   │   ├── ObjectSpread.test.js
│       │       │       │   │   ├── OptionalChaining.js
│       │       │       │   │   ├── OptionalChaining.test.js
│       │       │       │   │   ├── Promises.js
│       │       │       │   │   ├── Promises.test.js
│       │       │       │   │   ├── RestAndDefault.js
│       │       │       │   │   ├── RestAndDefault.test.js
│       │       │       │   │   ├── RestParameters.js
│       │       │       │   │   ├── RestParameters.test.js
│       │       │       │   │   ├── TemplateInterpolation.js
│       │       │       │   │   └── TemplateInterpolation.test.js
│       │       │       │   └── webpack/
│       │       │       │       ├── CssInclusion.js
│       │       │       │       ├── CssInclusion.test.js
│       │       │       │       ├── CssModulesInclusion.js
│       │       │       │       ├── CssModulesInclusion.test.js
│       │       │       │       ├── DynamicImport.js
│       │       │       │       ├── DynamicImport.test.js
│       │       │       │       ├── ImageInclusion.js
│       │       │       │       ├── ImageInclusion.test.js
│       │       │       │       ├── JsonInclusion.js
│       │       │       │       ├── JsonInclusion.test.js
│       │       │       │       ├── LinkedModules.js
│       │       │       │       ├── LinkedModules.test.js
│       │       │       │       ├── NoExtInclusion.js
│       │       │       │       ├── NoExtInclusion.test.js
│       │       │       │       ├── SassInclusion.js
│       │       │       │       ├── SassInclusion.test.js
│       │       │       │       ├── SassModulesInclusion.js
│       │       │       │       ├── SassModulesInclusion.test.js
│       │       │       │       ├── ScssInclusion.js
│       │       │       │       ├── ScssInclusion.test.js
│       │       │       │       ├── ScssModulesInclusion.js
│       │       │       │       ├── ScssModulesInclusion.test.js
│       │       │       │       ├── SvgComponent.js
│       │       │       │       ├── SvgComponent.test.js
│       │       │       │       ├── SvgInCss.js
│       │       │       │       ├── SvgInCss.test.js
│       │       │       │       ├── SvgInclusion.js
│       │       │       │       ├── SvgInclusion.test.js
│       │       │       │       ├── UnknownExtInclusion.js
│       │       │       │       ├── UnknownExtInclusion.test.js
│       │       │       │       └── assets/
│       │       │       │           ├── aFileWithExt.unknown
│       │       │       │           ├── aFileWithoutExt
│       │       │       │           ├── abstract.json
│       │       │       │           ├── index.module.css
│       │       │       │           ├── index.module.sass
│       │       │       │           ├── index.module.scss
│       │       │       │           ├── sass-styles.module.sass
│       │       │       │           ├── sass-styles.sass
│       │       │       │           ├── scss-styles.module.scss
│       │       │       │           ├── scss-styles.scss
│       │       │       │           ├── style.css
│       │       │       │           ├── style.module.css
│       │       │       │           └── svg.css
│       │       │       ├── index.js
│       │       │       └── subfolder/
│       │       │           └── lol.js
│       │       └── template.json
│       ├── lib/
│       │   └── react-app.d.ts
│       ├── package.json
│       ├── scripts/
│       │   ├── build.js
│       │   ├── eject.js
│       │   ├── init.js
│       │   ├── start.js
│       │   ├── test.js
│       │   └── utils/
│       │       ├── createJestConfig.js
│       │       └── verifyTypeScriptSetup.js
│       ├── template/
│       │   └── README.md
│       └── template-typescript/
│           └── README.md
├── tasks/
│   ├── .gitignore
│   ├── cra.js
│   ├── e2e-behavior.sh
│   ├── e2e-installs.sh
│   ├── e2e-kitchensink-eject.sh
│   ├── e2e-kitchensink.sh
│   ├── e2e-old-node.sh
│   ├── e2e-simple.sh
│   ├── local-registry.sh
│   ├── local-test.sh
│   ├── publish.sh
│   ├── screencast-start.js
│   ├── screencast.js
│   ├── screencast.sh
│   └── verdaccio.yaml
└── test/
    ├── README.md
    ├── fixtures/
    │   ├── __shared__/
    │   │   ├── template/
    │   │   │   └── public/
    │   │   │       └── index.html
    │   │   ├── test-setup.js
    │   │   └── util/
    │   │       ├── scripts.js
    │   │       └── setup.js
    │   ├── boostrap-sass/
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   └── src/
    │   │       ├── index.js
    │   │       └── index.sass
    │   ├── builds-with-multiple-runtimes/
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   └── src/
    │   │       └── index.js
    │   ├── global-scss-asset-resolution/
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   └── src/
    │   │       ├── index.js
    │   │       └── index.scss
    │   ├── issue-5176-flow-class-properties/
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   └── src/
    │   │       ├── App.js
    │   │       └── App.test.js
    │   ├── issue-5947-not-typescript/
    │   │   ├── index.test.js
    │   │   └── package.json
    │   ├── jsconfig/
    │   │   ├── index.test.js
    │   │   ├── jsconfig.json
    │   │   ├── package.json
    │   │   └── src/
    │   │       ├── App.js
    │   │       ├── App.test.js
    │   │       ├── absoluteLoad.js
    │   │       └── index.js
    │   ├── mjs-support/
    │   │   ├── __snapshots__/
    │   │   │   └── index.test.js.snap
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   └── src/
    │   │       ├── App.js
    │   │       └── index.js
    │   ├── relative-paths/
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   └── src/
    │   │       ├── index.css
    │   │       └── index.js
    │   ├── typescript/
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   ├── src/
    │   │   │   ├── App.test.ts
    │   │   │   ├── App.ts
    │   │   │   └── absoluteLoad.ts
    │   │   └── tsconfig.json
    │   ├── typescript-advanced/
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   └── src/
    │   │       ├── App.test.ts
    │   │       ├── App.tsx
    │   │       └── index.tsx
    │   ├── typescript-typecheck/
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   └── src/
    │   │       ├── App.tsx
    │   │       └── index.tsx
    │   └── webpack-message-formatting/
    │       ├── __snapshots__/
    │       │   └── index.test.js.snap
    │       ├── index.test.js
    │       ├── package.json
    │       └── src/
    │           ├── AppAliasUnknownExport.js
    │           ├── AppBabel.js
    │           ├── AppCss.css
    │           ├── AppCss.js
    │           ├── AppIncorrectCase.js
    │           ├── AppLintError.js
    │           ├── AppLintWarning.js
    │           ├── AppMissingPackage.js
    │           ├── AppNoDefault.js
    │           ├── AppOutOfScopeImport.js
    │           ├── AppSass.js
    │           ├── AppSass.scss
    │           ├── AppUnknownExport.js
    │           ├── AppUnknownFile.js
    │           ├── Export5.js
    │           ├── ExportNoDefault.js
    │           ├── FooExport.js
    │           └── index.js
    ├── integration/
    │   └── create-react-app/
    │       └── index.test.js
    └── jest.config.js

================================================
FILE CONTENTS
================================================

================================================
FILE: .alexignore
================================================
build

CHANGELOG*
CODE_OF_CONDUCT.md


================================================
FILE: .alexrc
================================================
{
  "allow": [
    "attacks",
    "colors",
    "conservative",
    "crashes",
    "executed",
    "executes",
    "execution",
    "failed",
    "hook",
    "host-hostess",
    "hostesses-hosts",
    "invalid",
    "remain",
    "watchman-watchwoman"
  ]
}


================================================
FILE: .eslintignore
================================================
node_modules/
build/
test/fixtures/webpack-message-formatting/src/AppBabel.js
packages/react-error-overlay/lib/


================================================
FILE: .eslintrc.json
================================================
{
  "extends": "eslint:recommended",
  "env": {
    "browser": true,
    "commonjs": true,
    "node": true,
    "es6": true,
    "jest": true
  },
  "parserOptions": {
    "ecmaVersion": 2018
  },
  "rules": {
    "no-console": "off",
    "strict": ["error", "global"],
    "curly": "warn"
  },
  "overrides": [
    {
      "files": [
        "docusaurus/website/src/**/*.js",
        "packages/cra-template/**/*.js",
        "packages/react-error-overlay/**/*.js",
        "packages/react-scripts/fixtures/kitchensink/template/{src,integration}/**/*.js",
        "test/fixtures/*/src/*.js"
      ],
      "excludedFiles": ["packages/react-error-overlay/*.js"],
      "extends": ["react-app", "react-app/jest"]
    },
    {
      "files": [
        "test/fixtures/webpack-message-formatting/src/{AppLintError,AppLintWarning,AppUnknownFile}.js"
      ],
      "rules": {
        "no-unused-vars": "off",
        "no-undef": "off"
      }
    },
    {
      "files": ["test/fixtures/webpack-message-formatting/src/Export5.js"],
      "rules": {
        "import/no-anonymous-default-export": "off"
      }
    },
    {
      "files": ["test/fixtures/issue-5176-flow-class-properties/src/App.js"],
      "rules": {
        "no-dupe-class-members": "off"
      }
    }
  ]
}


================================================
FILE: .gitattributes
================================================
* text=auto eol=lf


================================================
FILE: .github/CODEOWNERS
================================================
packages/ @iansu @mrmckeb
docusaurus/ @iansu @mrmckeb


================================================
FILE: .github/FUNDING.yml
================================================
open_collective: create-react-app


================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.md
================================================
---
name: Bug report
about: Create a report to help us improve
labels: 'issue: bug report, needs triage'
---

<!--
    Please note that your issue will be fixed much faster if you spend about
    half an hour preparing it, including the exact reproduction steps and a demo.

    If you're in a hurry or don't feel confident, it's fine to report bugs with
    less details, but this makes it less likely they'll get fixed soon.

    In either case, please use this template and fill in as many fields below as you can.

    Note that we don't provide help for webpack questions after ejecting.
    You can find webpack docs at https://webpack.js.org/.
-->

### Describe the bug

(Write your answer here.)

### Did you try recovering your dependencies?

<!--
  Your module tree might be corrupted, and that might be causing the issues.
  Let's try to recover it. First, delete these files and folders in your project:

    * node_modules
    * package-lock.json
    * yarn.lock

  Then you need to decide which package manager you prefer to use.
  We support both npm (https://npmjs.com) and yarn (https://yarnpkg.com/).
  However, **they can't be used together in one project** so you need to pick one.

  If you decided to use npm, run this in your project directory:

    npm install -g npm@latest
    npm install

  This should fix your project.

  If you decided to use yarn, update it first (https://yarnpkg.com/en/docs/install).
  Then run in your project directory:

    yarn

  This should fix your project.

  Importantly, **if you decided to use yarn, you should never run `npm install` in the project**.
  For example, yarn users should run `yarn add <library>` instead of `npm install <library>`.
  Otherwise your project will break again.

  Have you done all these steps and still see the issue?
  Please paste the output of `npm --version` and/or `yarn --version` to confirm.
-->

(Write your answer here.)

### Which terms did you search for in User Guide?

<!--
  There are a few common documented problems, such as watcher not detecting changes, or build failing.
  They are described in the Troubleshooting section of the User Guide:

  https://facebook.github.io/create-react-app/docs/troubleshooting

  Please scan these few sections for common problems.
  Additionally, you can search the User Guide itself for something you're having issues with:

  https://facebook.github.io/create-react-app/

  If you didn't find the solution, please share which words you searched for.
  This helps us improve documentation for future readers who might encounter the same problem.
-->

(Write your answer here if relevant.)

### Environment

<!--
  To help identify if a problem is specific to a platform, browser, or module version, information about your environment is required.
  This enables the maintainers quickly reproduce the issue and give feedback.

  Run the following command in your React app's folder in terminal.
  Note: The result is copied to your clipboard directly.

  `npx create-react-app --info`

  Paste the output of the command in the section below.
-->

(paste the output of the command here.)

### Steps to reproduce

<!--
  How would you describe your issue to someone who doesn’t know you or your project?
  Try to write a sequence of steps that anybody can repeat to see the issue.
-->

(Write your steps here:)

1.
2.
3.

### Expected behavior

<!--
  How did you expect the tool to behave?
  It’s fine if you’re not sure your understanding is correct.
  Just write down what you thought would happen.
-->

(Write what you thought would happen.)

### Actual behavior

<!--
  Did something go wrong?
  Is something broken, or not behaving as you expected?
  Please attach screenshots if possible! They are extremely helpful for diagnosing issues.
-->

(Write what happened. Please add screenshots!)

### Reproducible demo

<!--
  If you can, please share a project that reproduces the issue.
  This is the single most effective way to get an issue fixed soon.

  There are two ways to do it:

    * Create a new app and try to reproduce the issue in it.
      This is useful if you roughly know where the problem is, or can’t share the real code.

    * Or, copy your app and remove things until you’re left with the minimal reproducible demo.
      This is useful for finding the root cause. You may then optionally create a new project.

  This is a good guide to creating bug demos: https://stackoverflow.com/help/mcve
  Once you’re done, push the project to GitHub and paste the link to it below:
-->

(Paste the link to an example project and exact instructions to reproduce the issue.)

<!--
  What happens if you skip this step?

  We will try to help you, but in many cases it is impossible because crucial
  information is missing. In that case we'll tag an issue as having a low priority,
  and eventually close it if there is no clear direction.

  We still appreciate the report though, as eventually somebody else might
  create a reproducible example for it.

  Thanks for helping us help you!
-->


================================================
FILE: .github/ISSUE_TEMPLATE/proposal.md
================================================
---
name: Proposal
about: Suggest an idea for improving Create React App
labels: 'issue: proposal, needs triage'
---

### Is your proposal related to a problem?

<!--
  Provide a clear and concise description of what the problem is.
  For example, "I'm always frustrated when..."
-->

(Write your answer here.)

### Describe the solution you'd like

<!--
  Provide a clear and concise description of what you want to happen.
-->

(Describe your proposed solution here.)

### Describe alternatives you've considered

<!--
  Let us know about other solutions you've tried or researched.
-->

(Write your answer here.)

### Additional context

<!--
  Is there anything else you can add about the proposal?
  You might want to link to related issues here, if you haven't already.
-->

(Write your answer here.)


================================================
FILE: .github/ISSUE_TEMPLATE/question.md
================================================
---
name: Question
about: Get help with Create React App
labels: 'needs triage'
---

If you have a general question about Create React App or about building an app with Create React App we encourage you to post in GitHub Discussions instead of this issue tracker. The maintainers and other community members can provide help and answer your questions there: https://github.com/facebook/create-react-app/discussions

If you're looking for general information on using React, the React docs have a list of resources: https://reactjs.org/community/support.html

If you've discovered a bug or would like to propose a change please use one of the other issue templates.

Thanks!


================================================
FILE: .github/PULL_REQUEST_TEMPLATE.md
================================================
<!--
Thank you for sending the PR!

If you changed any code, please provide us with clear instructions on how you verified your changes work. Bonus points for screenshots!

Happy contributing!
-->


================================================
FILE: .github/lock.yml
================================================
# Configuration for lock-threads - https://github.com/dessant/lock-threads

# Number of days of inactivity before a closed issue or pull request is locked
daysUntilLock: 5

# Issues and pull requests with these labels will not be locked. Set to `[]` to disable
exemptLabels: []

# Do not comment when locking
setLockReason: false
lockComment: false


================================================
FILE: .github/stale.yml
================================================
# Configuration for probot-stale - https://github.com/probot/stale

# Number of days of inactivity before an Issue or Pull Request becomes stale
daysUntilStale: 30

# Number of days of inactivity before a stale Issue or Pull Request is closed.
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
daysUntilClose: 5

# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
exemptLabels:
  - 'contributions: claimed'
  - 'contributions: up for grabs!'
  - 'good first issue'
  - 'issue: announcement'
  - 'issue: bug'
  - 'issue: needs investigation'
  - 'issue: proposal'
  - 'tag: breaking change'
  - 'tag: bug fix'
  - 'tag: documentation'
  - 'tag: enhancement'
  - 'tag: internal'
  - 'tag: new feature'
  - 'tag: underlying tools'

# Set to true to ignore issues in a project (defaults to false)
exemptProjects: true

# Set to true to ignore issues in a milestone (defaults to false)
exemptMilestones: true

# Label to use when marking as stale
staleLabel: stale

# Limit the number of actions per hour, from 1-30. Default is 30
limitPerRun: 30

issues:
  # Comment to post when marking Issues as stale.
  markComment: >
    This issue has been automatically marked as stale because it has not had any
    recent activity. It will be closed in 5 days if no further activity occurs.

  # Comment to post when closing a stale Issue.
  closeComment: >
    This issue has been automatically closed because it has not had any recent
    activity. If you have a question or comment, please open a new issue.

pulls:
  # Comment to post when marking Pull Request as stale.
  markComment: >
    This pull request has been automatically marked as stale because it has not
    had any recent activity. It will be closed in 5 days if no further activity
    occurs.

  # Comment to post when closing a stale Pull Request.
  closeComment: >
    This pull request has been automatically closed because it has not had any
    recent activity. If you have a question or comment, please open a new
    issue. Thank you for your contribution!


================================================
FILE: .github/workflows/build-and-test.yml
================================================
name: 'Build & Test'

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main

jobs:
  build:
    name: 'Build (${{ matrix.os }}, Node ${{ matrix.node }})'
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os:
          - 'ubuntu-latest'
        node:
          - '16'
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: ${{ matrix.node }}
          cache: 'npm'
      - name: Install dependencies
        run: npm ci --prefer-offline
      - name: Build
        run: npm run build

  integration:
    name: 'Integration Tests (${{ matrix.os }}, Node ${{ matrix.node }})'
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os:
          - 'ubuntu-latest'
          - 'macos-latest'
          - 'windows-latest'
        node:
          - '16'
    steps:
      - uses: actions/checkout@v3
      - name: Setup node
        uses: actions/setup-node@v3
        with:
          node-version: ${{ matrix.node }}
          cache: 'npm'
      - name: Install dependencies
        run: npm ci --prefer-offline
      # The integration tests are run with yarn, so we need to install it.
      - name: Install yarn
        run: npm i -g yarn
      - name: Run integration tests
        run: npm run test:integration

  e2e-simple:
    name: E2E Simple
    uses: ./.github/workflows/e2e-base.yml
    with:
      testScript: 'tasks/e2e-simple.sh'

  e2e-installs:
    name: E2E Installs
    uses: ./.github/workflows/e2e-base.yml
    with:
      testScript: 'tasks/e2e-installs.sh'

  e2e-kitchensink:
    name: E2E Kitchensink
    uses: ./.github/workflows/e2e-base.yml
    with:
      testScript: 'tasks/e2e-kitchensink.sh'


================================================
FILE: .github/workflows/e2e-base.yml
================================================
on:
  workflow_call:
    inputs:
      testScript:
        required: true
        type: string

name: E2E

jobs:
  test:
    name: 'Test (${{ matrix.os }}, Node ${{ matrix.node }})'
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os:
          - 'ubuntu-latest'
        node:
          - '16'
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: ${{ matrix.node }}
          cache: 'npm'
      - name: Install
        run: npm ci --prefer-offline
      - name: Initialize Global Git config
        run: |
          git config --global core.autocrlf false
          git config --global user.name "Create React App"
          git config --global user.email "cra@email.com"
      - name: Run tests
        run: ${{ inputs.testScript }}


================================================
FILE: .github/workflows/lint.yml
================================================
name: Lint

on: [push, pull_request]

jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: '16'
          cache: 'npm'
      - name: Install
        run: npm ci --prefer-offline
      - name: Alex
        run: npm run alex
      - name: Prettier
        run: npm run prettier -- --list-different
      - name: Eslint
        run: npm run eslint -- --max-warnings 0


================================================
FILE: .gitignore
================================================
.idea/
.vscode/
node_modules/
build/
.DS_Store
*.tgz
my-app*
template/src/__tests__/__snapshots__/
lerna-debug.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
/.changelog
.npm/


================================================
FILE: .prettierignore
================================================
build/
package-lock.json
test/fixtures/webpack-message-formatting/src/AppBabel.js
test/fixtures/webpack-message-formatting/src/AppCss.css
packages/react-error-overlay/fixtures/bundle*
packages/react-error-overlay/fixtures/inline*
packages/react-error-overlay/fixtures/junk*
packages/react-error-overlay/lib/
packages/react-error-overlay/coverage/


================================================
FILE: .prettierrc
================================================
{
  "arrowParens": "avoid",
  "singleQuote": true,
  "semi": true
}


================================================
FILE: CHANGELOG-0.x.md
================================================
## 1.0.0 and Newer Versions

**Please refer to [CHANGELOG-1.x.md](./CHANGELOG-1.x.md) for the 1.x range, and [CHANGELOG.md](CHANGELOG.md) for the newer versions.**

## 0.9.5 (March 9, 2017)

#### :bug: Bug Fix

- `react-scripts`

  - [#1783](https://github.com/facebook/create-react-app/pull/1783) **Work around Node 7.7.2 bug that crashes `npm start`.** ([@ryanwalters](https://github.com/ryanwalters))

#### :nail_care: Enhancement

- `eslint-config-react-app`

  - [#1773](https://github.com/facebook/create-react-app/pull/1773) Remove `guard-for-in` lint rule. ([@spicyj](https://github.com/spicyj))

- `react-scripts`
  - [#1760](https://github.com/facebook/create-react-app/pull/1760) Suggest `serve` for running in production. ([@leo](https://github.com/leo))
  - [#1747](https://github.com/facebook/create-react-app/pull/1747) Display `yarn` instead of `yarnpkg` when creating a new app. ([@lpalmes](https://github.com/lpalmes))

#### :memo: Documentation

- `react-scripts`

  - [#1756](https://github.com/facebook/create-react-app/pull/1756) Add Yarn steps for adding Flow. ([@zertosh](https://github.com/zertosh))

#### :house: Internal

- `babel-preset-react-app`

  - [#1742](https://github.com/facebook/create-react-app/pull/1742) Switch to `babel-preset-env` to remove the deprecation warning. ([@Timer](https://github.com/Timer))

#### Committers: 6

- Andres Suarez ([zertosh](https://github.com/zertosh))
- Ben Alpert ([spicyj](https://github.com/spicyj))
- Joe Haddad ([Timer](https://github.com/Timer))
- Leo Lamprecht ([leo](https://github.com/leo))
- Lorenzo Palmes ([lpalmes](https://github.com/lpalmes))
- Ryan Walters ([ryanwalters](https://github.com/ryanwalters))

### Migrating from 0.9.4 to 0.9.5

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

```sh
npm install --save-dev --save-exact react-scripts@0.9.5
```

## 0.9.4 (March 6, 2017)

#### :bug: Bug Fix

- `create-react-app`

  - [#1706](https://github.com/facebook/create-react-app/pull/1706) Extract compressed package for package name. ([@Timer](https://github.com/Timer))

    You may now specify a scoped package for `--scripts-version` and obtain a working installation.

  - [#1695](https://github.com/facebook/create-react-app/pull/1695) Print why installation was aborted. ([@tgig](https://github.com/tgig))

- `react-scripts`

  - [#1727](https://github.com/facebook/create-react-app/pull/1727) Fix ejecting from a scoped fork. ([@gaearon](https://github.com/gaearon))

    Ejecting now works within a scoped fork.

  - [#1721](https://github.com/facebook/create-react-app/pull/1721) Fix hot reloading for WebpackDevServer after eject. ([@gaearon](https://github.com/gaearon))

- `react-dev-utils`

  - [#1690](https://github.com/facebook/create-react-app/pull/1690) Fix `openBrowser()` when `BROWSER=open` on macOS. ([@bpierre](https://github.com/bpierre))

  - [#1696](https://github.com/facebook/create-react-app/pull/1696) Improve reliability of port detection. ([@chrisdrackett](https://github.com/chrisdrackett))

#### :nail_care: Enhancement

- `eslint-config-react-app`, `react-scripts`

  - [#1705](https://github.com/facebook/create-react-app/pull/1705) Add support for `ignoreRestSiblings` in `no-unused-vars`. ([@chrisdrackett](https://github.com/chrisdrackett))

    Linter no longer warns when using rest properties to remove variables from an object.

  - [#1542](https://github.com/facebook/create-react-app/pull/1542) Bump `jsx-a11y` version. ([@bondz](https://github.com/bondz))

- `react-dev-utils`, `react-scripts`

  - [#1726](https://github.com/facebook/create-react-app/pull/1726) Extract generic build functions into `react-dev-utils`. ([@viankakrisna](https://github.com/viankakrisna))

- Other

  - [#1402](https://github.com/facebook/create-react-app/pull/1402) Stub `package.json` for e2e test. ([@matoilic](https://github.com/matoilic))

#### :memo: Documentation

- `react-scripts`
  - [#1710](https://github.com/facebook/create-react-app/pull/1710) Update now.sh deployment instructions. ([@replaid](https://github.com/replaid))
  - [#1717](https://github.com/facebook/create-react-app/pull/1717) Add docs for Apache client side routing. ([@viankakrisna](https://github.com/viankakrisna))
  - [#1698](https://github.com/facebook/create-react-app/pull/1698) Suggest to use `.env` for enabling polling mode. ([@gaearon](https://github.com/gaearon))
  - [#1687](https://github.com/facebook/create-react-app/pull/1687) Fixed missing `--recursive` flag in first `npm run watch-css` command. ([@mklemme](https://github.com/mklemme))

#### :house: Internal

- `react-scripts`
  - [#1736](https://github.com/facebook/create-react-app/pull/1736) Fix eject for linked react-scripts. ([@tuchk4](https://github.com/tuchk4))
  - [#1741](https://github.com/facebook/create-react-app/pull/1741) Fix internal linting setup. ([@gaearon](https://github.com/gaearon))
  - [#1730](https://github.com/facebook/create-react-app/pull/1730) Fix Node 4 e2e tests. ([@Timer](https://github.com/Timer))
- `eslint-config-react-app`
  - [#1740](https://github.com/facebook/create-react-app/pull/1740) Relax ESLint config peerDependency. ([@gaearon](https://github.com/gaearon))
- `eslint-config-react-app`, `react-dev-utils`, `react-scripts`
  - [#1729](https://github.com/facebook/create-react-app/pull/1729) Lint internal scripts with `eslint:recommended`. ([@gaearon](https://github.com/gaearon))
- `react-dev-utils`
  - [#1724](https://github.com/facebook/create-react-app/pull/1724) Don't use ES6 in a file that should run on Node 4. ([@gaearon](https://github.com/gaearon))
- Other
  - [#1723](https://github.com/facebook/create-react-app/pull/1723) Skip AppVeyor CI builds for Markdown changes. ([@gaearon](https://github.com/gaearon))
  - [#1707](https://github.com/facebook/create-react-app/pull/1707) Add double quotes to escape spaces in paths in e2e. ([@viankakrisna](https://github.com/viankakrisna))
  - [#1688](https://github.com/facebook/create-react-app/pull/1688) Upgrade `lerna` version. ([@viankakrisna](https://github.com/viankakrisna))

#### Committers: 11

- Ade Viankakrisna Fadlil ([viankakrisna](https://github.com/viankakrisna))
- Bond ([bondz](https://github.com/bondz))
- Chris Drackett ([chrisdrackett](https://github.com/chrisdrackett))
- Dan Abramov ([gaearon](https://github.com/gaearon))
- Joe Haddad ([Timer](https://github.com/Timer))
- Mato Ilic ([matoilic](https://github.com/matoilic))
- Myk Klemme ([mklemme](https://github.com/mklemme))
- Pierre Bertet ([bpierre](https://github.com/bpierre))
- Ryan Platte ([replaid](https://github.com/replaid))
- Travis Giggy ([tgig](https://github.com/tgig))
- Valerii Sorokobatko ([tuchk4](https://github.com/tuchk4))

### Migrating from 0.9.3 to 0.9.4

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

```sh
npm install --save-dev --save-exact react-scripts@0.9.4
```

You may also optionally update the global command-line utility for scoped package support:

```sh
npm install -g create-react-app@1.3.0
```

## 0.9.3 (February 28, 2017)

#### :rocket: New Feature

- `create-react-app`

  - [#1423](https://github.com/facebook/create-react-app/pull/1423) **Fall back to Yarn offline cache when creating a new project.** ([@voxsim](https://github.com/voxsim))

  If you are using Yarn, and you have created at least one app previously, Create React App now works offline.

  <img src="https://i.imgur.com/1FLa9Tg.gif" width="500" alt="Yarn offline installation demo">

#### :bug: Bug Fix

- `react-scripts`

  - [#1665](https://github.com/facebook/create-react-app/pull/1665) Temporarily disable ESLint caching because of a bug. ([@gaearon](https://github.com/gaearon))

- `create-react-app`
  - [#1675](https://github.com/facebook/create-react-app/pull/1675) Delete project folder on failed installation on Windows. ([@johann-sonntagbauer](https://github.com/johann-sonntagbauer))
  - [#1662](https://github.com/facebook/create-react-app/pull/1662) Validate project name before creating a project. ([@johann-sonntagbauer](https://github.com/johann-sonntagbauer))
  - [#1669](https://github.com/facebook/create-react-app/pull/1669) Make sure React dependencies aren’t pinned in new projects. ([@johann-sonntagbauer](https://github.com/johann-sonntagbauer))

#### :nail_care: Enhancement

- `react-scripts`

  - [#1677](https://github.com/facebook/create-react-app/pull/1677) Add `X-FORWARDED` headers for proxy requests. ([@johann-sonntagbauer](https://github.com/johann-sonntagbauer))

#### :memo: Documentation

- `react-scripts`

  - [#1657](https://github.com/facebook/create-react-app/pull/1657) Tweak the Visual Studio Code debugging guide. ([@ryansully](https://github.com/ryansully))

#### :house: Internal

- End-to-end Tests

  - [#1648](https://github.com/facebook/create-react-app/pull/1648) Add Windows CI tests for better stability. ([@Timer](https://github.com/Timer))

#### Committers: 5

- Dan Abramov ([gaearon](https://github.com/gaearon))
- Joe Haddad ([Timer](https://github.com/Timer))
- Johann Hubert Sonntagbauer ([johann-sonntagbauer](https://github.com/johann-sonntagbauer))
- Ryan Sullivan ([ryansully](https://github.com/ryansully))
- Simon Vocella ([voxsim](https://github.com/voxsim))

### Migrating from 0.9.2 to 0.9.3

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

```sh
npm install --save-dev --save-exact react-scripts@0.9.3
```

You may also optionally update the global command-line utility for offline Yarn cache support:

```sh
npm install -g create-react-app@1.2.1
```

## 0.9.2 (February 26, 2017)

#### :nail_care: Enhancement

- `create-react-app`

  - [#1253](https://github.com/facebook/create-react-app/pull/1253) **Install time optimization.** ([@n3tr](https://github.com/n3tr))

    React, ReactDOM, and `react-scripts` are now installed in the same install instead of two different installs. This reduces app creation time by a noticeable amount.

  - [#1512](https://github.com/facebook/create-react-app/pull/1512) **Graceful error handling.** ([@chitchu](https://github.com/chitchu))

    If an error occurs while `create-react-app` is running, it will now clean up and not leave a broken project to reduce confusion.

  - [#1193](https://github.com/facebook/create-react-app/pull/1193) Suggest upgrading to NPM >= 3 for faster install times. ([@mobinni](https://github.com/mobinni))

  - [#1603](https://github.com/facebook/create-react-app/pull/1603) Allow app creation in a WebStorm project. ([@driquelme](https://github.com/driquelme))

  - [#1570](https://github.com/facebook/create-react-app/pull/1570) Allow git urls in `--scripts-version`. ([@tomconroy](https://github.com/tomconroy))

- `react-scripts`

  - [#1578](https://github.com/facebook/create-react-app/pull/1578) Enable lint caching in development. ([@viankakrisna](https://github.com/viankakrisna))

  - [#1478](https://github.com/facebook/create-react-app/pull/1478) Update the build script message to show the correct port. ([@chyipin](https://github.com/chyipin))

  - [#1567](https://github.com/facebook/create-react-app/pull/1567) Remove .bin files after eject. ([@tuchk4](https://github.com/tuchk4))

  - [#1560](https://github.com/facebook/create-react-app/pull/1560) Bump `recursive-readdir`. ([@wtgtybhertgeghgtwtg](https://github.com/wtgtybhertgeghgtwtg))

#### :bug: Bug Fix

- `react-scripts`

  - [#1635](https://github.com/facebook/create-react-app/pull/1635) **Fix Jest configuration.** ([@Timer](https://github.com/Timer))

    Fixes ejecting on Windows for macOS and Linux machines.

  - [#1356](https://github.com/facebook/create-react-app/pull/1356) Fix workflow if react-scripts package is linked via npm-link. ([@tuchk4](https://github.com/tuchk4))

    Advanced users may opt to fork `react-scripts` instead of ejecting so they still receive upstream updates.<br>
    `react-scripts` will now function as expected when linking to a development version.<br>
    Previously, you could not test changes with an existing application via linking.

  - [#1585](https://github.com/facebook/create-react-app/pull/1585) Ensure PORT environment variable is an integer. ([@matoilic](https://github.com/matoilic))

  - [#1628](https://github.com/facebook/create-react-app/pull/1628) Show correct port for pushstate-server URL text. ([@mattccrampton](https://github.com/mattccrampton))

  - [#1647](https://github.com/facebook/create-react-app/pull/1647) Fix `npm test` on Windows ([@gaearon](https://github.com/gaearon))

#### :memo: Documentation

- User Guides
  - [#1391](https://github.com/facebook/create-react-app/pull/1391) Add note how to resolve missing required files for Heroku. ([@sbritoig](https://github.com/sbritoig))
  - [#1577](https://github.com/facebook/create-react-app/pull/1577) Add a how-to on `react-snapshot`. ([@superhighfives](https://github.com/superhighfives))
  - [#1121](https://github.com/facebook/create-react-app/pull/1121) Add documentation for customizing Bootstrap theme. ([@myappincome](https://github.com/myappincome))
  - [#1540](https://github.com/facebook/create-react-app/pull/1540) Document debugging in Visual Studio Code. ([@bondz](https://github.com/bondz))
  - [#1618](https://github.com/facebook/create-react-app/pull/1618) Add note about when to import Bootstrap CSS. ([@joewoodhouse](https://github.com/joewoodhouse))
  - [#1518](https://github.com/facebook/create-react-app/pull/1518) Update flow configuration documentation. ([@SBrown52](https://github.com/SBrown52))
  - [#1625](https://github.com/facebook/create-react-app/pull/1625) Specify that NODE_ENV is set to 'production' during the build step. ([@mderazon](https://github.com/mderazon))
  - [#1573](https://github.com/facebook/create-react-app/pull/1573) Update Jest documentation links. ([@mkermani144](https://github.com/mkermani144))
  - [#1564](https://github.com/facebook/create-react-app/pull/1564) Add --recursive to Sass watch script. ([@aleburato](https://github.com/aleburato))
  - [#1561](https://github.com/facebook/create-react-app/pull/1561) Use https in link in documentation. ([@dariocravero](https://github.com/dariocravero))
  - [#1562](https://github.com/facebook/create-react-app/pull/1562) Update `jest-enzyme` documentation. ([@kiranps](https://github.com/kiranps))
  - [#1543](https://github.com/facebook/create-react-app/pull/1543) Update CSS preprocessor instructions. ([@aleburato](https://github.com/aleburato))
  - [#1338](https://github.com/facebook/create-react-app/pull/1338) Add link to Azure deployment tutorial. ([@tpetrina](https://github.com/tpetrina))
  - [#1320](https://github.com/facebook/create-react-app/pull/1320) Document how to disable autoprefix feature. ([@rrubas](https://github.com/rrubas))
  - [#1313](https://github.com/facebook/create-react-app/pull/1313) List features beyond ES6 supported by create-react-app. ([@jonathanconway](https://github.com/jonathanconway))
  - [#1008](https://github.com/facebook/create-react-app/pull/1008) Add Saas support documentation. ([@tsironis](https://github.com/tsironis))
  - [#994](https://github.com/facebook/create-react-app/pull/994) Suggest `jest-enzyme` for simplifying test matchers. ([@blainekasten](https://github.com/blainekasten))
  - [#1608](https://github.com/facebook/create-react-app/pull/1608) Add note for using CHOKIDAR_USEPOLLING in virtual machines to enable HMR. ([@AJamesPhillips](https://github.com/AJamesPhillips))
  - [#1495](https://github.com/facebook/create-react-app/pull/1495) Add useful link to react-scripts. ([@pd4d10](https://github.com/pd4d10))
- READMEs
  - [#1576](https://github.com/facebook/create-react-app/pull/1576) Switch from Neo to Neutrino. ([@eliperelman](https://github.com/eliperelman))
  - [#1275](https://github.com/facebook/create-react-app/pull/1275) Suggest yarn commands in addition to npm. ([@lifez](https://github.com/lifez))

#### :house: Internal

- `babel-preset-react-app`
  - [#1598](https://github.com/facebook/create-react-app/pull/1598) Remove redundant babel-plugin-transform-es2015-parameters. ([@christophehurpeau](https://github.com/christophehurpeau))
- Other
  - [#1534](https://github.com/facebook/create-react-app/pull/1534) Use yarn@latest in e2e. ([@gaearon](https://github.com/gaearon))
  - [#1295](https://github.com/facebook/create-react-app/pull/1295) Make node version check more robust in e2e. ([@pugnascotia](https://github.com/pugnascotia))
  - [#1503](https://github.com/facebook/create-react-app/pull/1503) Fix `test -e` in e2e. ([@igetgames](https://github.com/igetgames))

#### Committers: 36

- Ade Viankakrisna Fadlil ([viankakrisna](https://github.com/viankakrisna))
- Alessandro Burato ([aleburato](https://github.com/aleburato))
- Alexander James Phillips ([AJamesPhillips](https://github.com/AJamesPhillips))
- Blaine Kasten ([blainekasten](https://github.com/blainekasten))
- Bond ([bondz](https://github.com/bondz))
- Charlie Gleason ([superhighfives](https://github.com/superhighfives))
- Christophe Hurpeau ([christophehurpeau](https://github.com/christophehurpeau))
- Dan Abramov ([gaearon](https://github.com/gaearon))
- Daniel Riquelme ([driquelme](https://github.com/driquelme))
- Darío Javier Cravero ([dariocravero](https://github.com/dariocravero))
- Dimitris Tsironis ([tsironis](https://github.com/tsironis))
- Eli Perelman ([eliperelman](https://github.com/eliperelman))
- Jirat Ki. ([n3tr](https://github.com/n3tr))
- Joe Haddad ([Timer](https://github.com/Timer))
- Joe Woodhouse ([joewoodhouse](https://github.com/joewoodhouse))
- Jonathan Conway ([jonathanconway](https://github.com/jonathanconway))
- Marcus R. Brown ([igetgames](https://github.com/igetgames))
- Mato Ilic ([matoilic](https://github.com/matoilic))
- Matt Crampton ([mattccrampton](https://github.com/mattccrampton))
- Michael DeRazon ([mderazon](https://github.com/mderazon))
- Mo Binni ([mobinni](https://github.com/mobinni))
- Mohammad Kermani ([mkermani144](https://github.com/mkermani144))
- Phawin Khongkhasawan ([lifez](https://github.com/lifez))
- Roman Rubas ([rrubas](https://github.com/rrubas))
- Rory Hunter ([pugnascotia](https://github.com/pugnascotia))
- Tom Conroy ([tomconroy](https://github.com/tomconroy))
- Toni Petrina ([tpetrina](https://github.com/tpetrina))
- Valerii Sorokobatko ([tuchk4](https://github.com/tuchk4))
- Vicente Jr Yuchitcho ([chitchu](https://github.com/chitchu))
- [SBrown52](https://github.com/SBrown52)
- [chyipin](https://github.com/chyipin)
- [myappincome](https://github.com/myappincome)
- [sbritoig](https://github.com/sbritoig)
- [wtgtybhertgeghgtwtg](https://github.com/wtgtybhertgeghgtwtg)
- kiran ps ([kiranps](https://github.com/kiranps))
- pd4d10 ([pd4d10](https://github.com/pd4d10))

### Migrating from 0.9.0 to 0.9.2

**Note:** 0.9.1 had known issues so you should skip it.

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

```sh
npm install --save-dev --save-exact react-scripts@0.9.2
```

You may also optionally update the global command-line utility for more efficient installs (thanks [@n3tr](https://github.com/n3tr)):

```sh
npm install -g create-react-app@1.1.0
```

## <s>0.9.1 (February 25, 2017)</s>

This release has known issues and you should skip it. Update directly to 0.9.2 instead.

## 0.9.0 (February 11, 2017)

Thanks to [@Timer](https://github.com/timer) for cutting this release.

#### :rocket: New Feature

- `react-scripts`

  - [#1489](https://github.com/facebook/create-react-app/pull/1489) Support setting `"homepage"` to `"."` to generate relative asset paths. ([@tibdex](https://github.com/tibdex))

    Applications that don’t use the HTML5 `pushState` API can now be built to be served from any relative URL. To enable this, specify `"."` as your `homepage` setting in `package.json`. It used to be possible before with a few known bugs, but they should be fixed now. See [Serving the Same Build from Different Paths](https://github.com/facebook/create-react-app/blob/main/packages/react-scripts/template/README.md#serving-the-same-build-from-different-paths).

  - [#937](https://github.com/facebook/create-react-app/pull/1504) Add `PUBLIC_URL` environment variable for advanced use. ([@EnoahNetzach](https://github.com/EnoahNetzach))

    If you use a CDN to serve the app, you can now specify `PUBLIC_URL` environment variable to override the base URL (including the hostname) for resources referenced from the built code. This new variable is mentioned in the new [Advanced Configuration](https://github.com/facebook/create-react-app/blob/main/packages/react-scripts/template/README.md#advanced-configuration) section.

  - [#1440](https://github.com/facebook/create-react-app/pull/1440) Make all `REACT_APP_*` environment variables accessible in `index.html`. ([@jihchi](https://github.com/jihchi))

    This makes all environment variables previously available in JS, also available in the HTML file, for example `%REACT_APP_MY_VARIABLE%`. See [Referencing Environment Variables in HTML](https://github.com/facebook/create-react-app/blob/main/packages/react-scripts/template/README.md#referencing-environment-variables-in-the-html).

- `react-dev-utils`

  - [#1148](https://github.com/facebook/create-react-app/pull/1148) Configure which browser to open with `npm start`. ([@GAumala](https://github.com/GAumala))

    You can now disable the automatic browser launching by setting the `BROWSER` environment variable to `none`. You can also specify a different browser (or an arbitrary script) to open by default, [as supported by `opn` command](https://github.com/sindresorhus/opn#app) that we use under the hood. See [Advanced Configuration](https://github.com/facebook/create-react-app/blob/main/packages/react-scripts/template/README.md#advanced-configuration).

#### :boom: Breaking Change

- `react-scripts`

  - [#1522](https://github.com/facebook/create-react-app/pull/1522) Upgrade dependencies. ([@Timer](https://github.com/Timer))
  - [#1432](https://github.com/facebook/create-react-app/pull/1432) Bump Jest version. ([@gaearon](https://github.com/gaearon))
  - [#1311](https://github.com/facebook/create-react-app/pull/1311) Updated `babel-jest` and `jest` packages to 18.0.0. ([@lopezator](https://github.com/lopezator))

    Jest has been updated to 18 and has introduced some [breaking changes and new features](https://facebook.github.io/jest/blog/2016/12/15/2016-in-jest.html).

- `react-scripts`, `react-dev-utils`

  - [#1264](https://github.com/facebook/create-react-app/pull/1264) Remove interactive shell check when opening browser on start. ([@CaryLandholt](https://github.com/CaryLandholt))

    Non-interactive terminals no longer automatically disable launching of the browser. Instead, you need to [specify `none` as `BROWSER` environment variable](https://github.com/facebook/create-react-app/blob/main/packages/react-scripts/template/README.md#advanced-configuration) if you wish to disable it.

#### :bug: Bug Fix

- `react-scripts`

  - [#1441](https://github.com/facebook/create-react-app/pull/1441) Added `babel-runtime` dependency to deduplicate dependencies when using Yarn. ([@jkimbo](https://github.com/jkimbo))

    This works around a bug in Yarn that caused newly created projects to be over 400MB. Now they are down to 126MB, just like with npm 3.

  - [#1522](https://github.com/facebook/create-react-app/pull/1522) Upgrade dependencies. ([@Timer](https://github.com/Timer))
  - [#1458](https://github.com/facebook/create-react-app/pull/1458) Additionally remove `react-scripts` from dependencies on eject. ([@creynders](https://github.com/creynders))
  - [#1309](https://github.com/facebook/create-react-app/pull/1309) Bump `babel-loader` version (#1009). ([@frontsideair](https://github.com/frontsideair))
  - [#1267](https://github.com/facebook/create-react-app/pull/1267) Only gitignore directories in root, not deep. ([@jayphelps](https://github.com/jayphelps))

- `react-dev-utils`

  - [#1377](https://github.com/facebook/create-react-app/pull/1377) webpack-dev-server patch for 'still-ok' success status. ([@TheBlackBolt](https://github.com/TheBlackBolt))
  - [#1274](https://github.com/facebook/create-react-app/pull/1274) Downgrading to compatible version of SockJS-Client. ([@holloway](https://github.com/holloway))
  - [#1247](https://github.com/facebook/create-react-app/pull/1247) Only open Chrome tab if BROWSER is missing or is Chrome. ([@gaearon](https://github.com/gaearon))

#### :nail_care: Enhancement

- `react-scripts`

  - [#1496](https://github.com/facebook/create-react-app/pull/1496) Make build exit with error code when interrupted. ([@brandones](https://github.com/brandones))
  - [#1352](https://github.com/facebook/create-react-app/pull/1352) More descriptive error message for `env.CI = true` warnings causing failures. ([@jayphelps](https://github.com/jayphelps))
  - [#1264](https://github.com/facebook/create-react-app/pull/1264) Remove interactive shell check when opening browser on start. ([@CaryLandholt](https://github.com/CaryLandholt))
  - [#1311](https://github.com/facebook/create-react-app/pull/1311) Updated `babel-jest` and `jest` packages to 18.0.0. ([@lopezator](https://github.com/lopezator))
  - [#1432](https://github.com/facebook/create-react-app/pull/1432) Bump Jest version. ([@gaearon](https://github.com/gaearon))
  - [#1507](https://github.com/facebook/create-react-app/pull/1507) fix: add yarn gitignores. ([@adjohnson916](https://github.com/adjohnson916))
  - [#1510](https://github.com/facebook/create-react-app/pull/1510) Add missing `'\n'` to the end of `package.json` file. ([@pd4d10](https://github.com/pd4d10))
  - [#1324](https://github.com/facebook/create-react-app/pull/1324) Use npm script hooks to avoid `&&` in deploy script. ([@zpao](https://github.com/zpao))

- `create-react-app`

  - [#1270](https://github.com/facebook/create-react-app/pull/1270) gh-1269: Enabling nested folder paths for project name. ([@dinukadesilva](https://github.com/dinukadesilva))

#### :memo: Documentation

- User Guide

  - [#1515](https://github.com/facebook/create-react-app/pull/1515) readme: Advanced Configuration. ([@Timer](https://github.com/Timer))
  - [#1513](https://github.com/facebook/create-react-app/pull/1513) clarifying the use of custom environment variables. ([@calweb](https://github.com/calweb))
  - [#1511](https://github.com/facebook/create-react-app/pull/1511) Change "OS X" references to "macOS". ([@RodrigoHahn](https://github.com/RodrigoHahn))
  - [#1482](https://github.com/facebook/create-react-app/pull/1482) Edit User Guide: Add ESLint config for VS Code users. ([@vulong23](https://github.com/vulong23))
  - [#1483](https://github.com/facebook/create-react-app/pull/1483) Reflect websocket proxy support on README (#1013). ([@frontsideair](https://github.com/frontsideair))
  - [#1453](https://github.com/facebook/create-react-app/pull/1453) Readme: Removes experimental from Jest snapshot. ([@frehner](https://github.com/frehner))
  - [#1437](https://github.com/facebook/create-react-app/pull/1437) Added links to tutorials for integrating cra with an api backend. ([@alexdriaguine](https://github.com/alexdriaguine))
  - [#1422](https://github.com/facebook/create-react-app/pull/1422) Add causes of dev server not detecting changes. ([@jetpackpony](https://github.com/jetpackpony))
  - [#1260](https://github.com/facebook/create-react-app/pull/1260) Heroku Deployment: Adds a note on how to resolve "File/Module Not Found Errors" . ([@MsUzoAgu](https://github.com/MsUzoAgu))
  - [#1256](https://github.com/facebook/create-react-app/pull/1256) Add "Changing the Page Title" to User Guide. ([@gaearon](https://github.com/gaearon))
  - [#1245](https://github.com/facebook/create-react-app/pull/1245) Replace the Flow documentation section. ([@gaearon](https://github.com/gaearon))
  - [#1514](https://github.com/facebook/create-react-app/pull/1514) corrected minor typo. ([@crowchirp](https://github.com/crowchirp))
  - [#1393](https://github.com/facebook/create-react-app/pull/1393) replace two space syntax with br tag. ([@carlsagan21](https://github.com/carlsagan21))
  - [#1384](https://github.com/facebook/create-react-app/pull/1384) Document Flow support. ([@dschep](https://github.com/dschep))

- READMEs

  - [#1375](https://github.com/facebook/create-react-app/pull/1375) Change console.log for errors and warnings. ([@jimmyhmiller](https://github.com/jimmyhmiller))
  - [#1369](https://github.com/facebook/create-react-app/pull/1369) Add missing import in react-dev-utils README.md. ([@pedronauck](https://github.com/pedronauck))

#### :house: Internal

- Internal Test Suite

  - [#1519](https://github.com/facebook/create-react-app/pull/1519) Add test cases for PUBLIC_URL and relative path. ([@Timer](https://github.com/Timer))
  - [#1484](https://github.com/facebook/create-react-app/pull/1484) Improve e2e-kitchensink and Jest coverage. ([@Timer](https://github.com/Timer))
  - [#1463](https://github.com/facebook/create-react-app/pull/1463) Minor code style and wrong expect. ([@tuchk4](https://github.com/tuchk4))
  - [#1470](https://github.com/facebook/create-react-app/pull/1470) E2e jsdom fix. ([@EnoahNetzach](https://github.com/EnoahNetzach))
  - [#1187](https://github.com/facebook/create-react-app/pull/1187) Use a more sophisticated template for end-to-end testing.. ([@EnoahNetzach](https://github.com/EnoahNetzach))

- Other

  - [#1289](https://github.com/facebook/create-react-app/pull/1289) Remove path-exists from dependencies and replace it with fs.existsSync. ([@halfzebra](https://github.com/halfzebra))

#### Committers: 35

- Alex Driaguine ([alexdriaguine](https://github.com/alexdriaguine))
- Anders D. Johnson ([adjohnson916](https://github.com/adjohnson916))
- Anthony F. ([frehner](https://github.com/frehner))
- Brandon Istenes ([brandones](https://github.com/brandones))
- Calvin Webster ([calweb](https://github.com/calweb))
- Cary Landholt ([CaryLandholt](https://github.com/CaryLandholt))
- Chandan Rai ([crowchirp](https://github.com/crowchirp))
- Christian Raidl ([Chris-R3](https://github.com/Chris-R3))
- Dan Abramov ([gaearon](https://github.com/gaearon))
- Daniel Schep ([dschep](https://github.com/dschep))
- David ([lopezator](https://github.com/lopezator))
- Dinuka De Silva ([dinukadesilva](https://github.com/dinukadesilva))
- Eduard Kyvenko ([halfzebra](https://github.com/halfzebra))
- Fabrizio Castellarin ([EnoahNetzach](https://github.com/EnoahNetzach))
- Fatih ([frontsideair](https://github.com/frontsideair))
- Gabriel Aumala ([GAumala](https://github.com/GAumala))
- Jay Phelps ([jayphelps](https://github.com/jayphelps))
- Jih-Chi Lee ([jihchi](https://github.com/jihchi))
- Jimmy Miller ([jimmyhmiller](https://github.com/jimmyhmiller))
- Joe Haddad ([Timer](https://github.com/Timer))
- Johnny Magrippis ([jmagrippis](https://github.com/jmagrippis))
- Jonathan Kim ([jkimbo](https://github.com/jkimbo))
- MUA ([MsUzoAgu](https://github.com/MsUzoAgu))
- Matthew Holloway ([holloway](https://github.com/holloway))
- Nguyen Le Vu Long ([vulong23](https://github.com/vulong23))
- Paul O’Shannessy ([zpao](https://github.com/zpao))
- Pedro Nauck ([pedronauck](https://github.com/pedronauck))
- Robbie H ([TheBlackBolt](https://github.com/TheBlackBolt))
- Thibault Derousseaux ([tibdex](https://github.com/tibdex))
- Valerii ([tuchk4](https://github.com/tuchk4))
- Vasiliy Taranov ([jetpackpony](https://github.com/jetpackpony))
- [RodrigoHahn](https://github.com/RodrigoHahn)
- creynders ([creynders](https://github.com/creynders))
- pd4d10 ([pd4d10](https://github.com/pd4d10))
- soo ([carlsagan21](https://github.com/carlsagan21))

### Migrating from 0.8.5 to 0.9.0

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

```sh
npm install --save-dev --save-exact react-scripts@0.9.0
```

Then, run your tests. If you are affected by breaking changes from Jest 18, consult [blog post](https://facebook.github.io/jest/blog/2016/12/15/2016-in-jest.html), [changelog](https://github.com/facebook/jest/blob/master/CHANGELOG.md#jest-1800), and [documentation](https://facebook.github.io/jest/docs/getting-started.html). You might need to update any snapshots since their format might have changed.

If you relied on the browser not starting in non-interactive terminals, you now need to explicitly specify `BROWSER=none` as an environment variable to disable it.

## 0.8.5 (January 9, 2017)

Thanks to [@fson](https://github.com/fson) for cutting this release.

#### :bug: Bug Fix

- `create-react-app`, `react-scripts`

  - [#1365](https://github.com/facebook/create-react-app/pull/1365) Use yarnpkg alias to run Yarn. ([@fson](https://github.com/fson))

    Fixes an issue where running `create-react-app` failed on systems with Apache Hadoop installed because it falsely detected Hadoop YARN executable as Yarn package manager.

#### Committers: 1

- Ville Immonen ([fson](https://github.com/fson))

### Migrating from 0.8.4 to 0.8.5

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

```sh
npm install --save-dev --save-exact react-scripts@0.8.5
```

You may also optionally update the global command-line utility:

```sh
npm install -g create-react-app@1.0.3
```

## 0.8.4 (December 11, 2016)

#### :bug: Bug Fix

- `react-scripts`

  - [#1233](https://github.com/facebook/create-react-app/pull/1233) Disable subresource integrity temporarily. ([@Timer](https://github.com/Timer))

    We added [Subresource Integrity](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity) checks to the build output in 0.8.2 but it turns out that they may fail in browsers using special compression proxies, such as Chrome on Android, when served over HTTP. We disabled the checks until we can find a safe way to add them.

- `react-dev-utils`

  - [#1226](https://github.com/facebook/create-react-app/pull/1226) Fix weird lint output. ([@n3tr](https://github.com/n3tr))

    Fixes strange lint message formatting in some edge cases.

  - [#1215](https://github.com/facebook/create-react-app/pull/1215) Fix - openChrome won't open default browser (using Canary). ([@n3tr](https://github.com/n3tr))

    Fixes a regression that caused stable Google Chrome to be opened even if you are using Canary as the default browser.

- `create-react-app`

  - [#1223](https://github.com/facebook/create-react-app/pull/1223) Clean up Yarn detection and install code. ([@fson](https://github.com/fson))

  Fixes noisy output on Windows when Yarn is not installed.

  - [#1224](https://github.com/facebook/create-react-app/pull/1224) Exit with an error code when npm/yarn install fails. ([@fson](https://github.com/fson))

#### :nail_care: Enhancement

- `react-scripts`

  - [#1237](https://github.com/facebook/create-react-app/pull/1237) Clear scrollback in test mode. ([@gaearon](https://github.com/gaearon))

    Ensures test watcher clears the console before running.

  - [#1229](https://github.com/facebook/create-react-app/pull/1229) Disable jest watch mode when --coverage flag is present [#1207]. ([@BenoitAverty](https://github.com/BenoitAverty))

    Since coverage doesn't work well with watch mode, we don’t run the watcher on `npm test -- --coverage` anymore.

  - [#1212](https://github.com/facebook/create-react-app/pull/1212) Proxy rewrites Origin header to match the target server URL. ([@koles](https://github.com/koles))

    Makes sure more API endpoints can work with the `proxy` setting.

  - [#1222](https://github.com/facebook/create-react-app/pull/1222) Disable gh-page setup instruction if scripts.deploy has been added. ([@n3tr](https://github.com/n3tr))

    Suppresses the instructions printed at the end of `npm run build` if `npm run deploy` already exists.

- `create-react-app`

  - [#1236](https://github.com/facebook/create-react-app/pull/1236) Tweak console messages. ([@gaearon](https://github.com/gaearon))

    Makes error messages more friendly.

  - [#1195](https://github.com/facebook/create-react-app/pull/1195) Use "commander" for cli argv handling. ([@EnoahNetzach](https://github.com/EnoahNetzach))

    Adds `create-react-app --help` with a list of options.

- `react-dev-utils`

  - [#1211](https://github.com/facebook/create-react-app/pull/1211) Use a better clear console sequence. ([@gaearon](https://github.com/gaearon))

    Ensures the development server clears the terminal when files are changed.

#### :memo: Documentation

- `react-dev-utils`

  - [#1232](https://github.com/facebook/create-react-app/pull/1232) [documentation] fix html-dev-plugin link in react-dev-utils doc. ([@shogunsea](https://github.com/shogunsea))

- `react-scripts`

  - [#1220](https://github.com/facebook/create-react-app/pull/1220) Adding troubleshooting information about Subresource Integrity digests.. ([@dfbaskin](https://github.com/dfbaskin))

#### :house: Internal

- `react-scripts`

  - [#1214](https://github.com/facebook/create-react-app/pull/1214) Bump babel-eslint version. ([@existentialism](https://github.com/existentialism))

#### Committers: 10

- Benoit Averty ([BenoitAverty](https://github.com/BenoitAverty))
- Brian Ng ([existentialism](https://github.com/existentialism))
- Dan Abramov ([gaearon](https://github.com/gaearon))
- Dave Baskin ([dfbaskin](https://github.com/dfbaskin))
- Fabrizio Castellarin ([EnoahNetzach](https://github.com/EnoahNetzach))
- Jirat Ki. ([n3tr](https://github.com/n3tr))
- Joe Haddad ([Timer](https://github.com/Timer))
- Pavel Kolesnikov ([koles](https://github.com/koles))
- Shogun Sea ([shogunsea](https://github.com/shogunsea))
- Ville Immonen ([fson](https://github.com/fson))

### Migrating from 0.8.3 to 0.8.4

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

```sh
npm install --save-dev --save-exact react-scripts@0.8.4
```

You may also optionally update the global command-line utility:

```sh
npm install -g create-react-app@1.0.2
```

## 0.8.3 (December 8, 2016)

#### :bug: Bug Fix

- `create-react-app`

  - [#1204](https://github.com/facebook/create-react-app/pull/1204) Catch synchronous errors from spawning yarn. ([@gaearon](https://github.com/gaearon))

    Fixes a crash when running `create-react-app` in some cases.

- `react-scripts`

  - [#1203](https://github.com/facebook/create-react-app/pull/1203) Update webpack-subresource-integrity to fix Windows builds. ([@gaearon](https://github.com/gaearon))

    Fixes a crash when running `npm run build` on Windows.

  - [#1201](https://github.com/facebook/create-react-app/pull/1201) Instruct Jest to load native components from RNW instead of RN. ([@remon-georgy](https://github.com/remon-georgy))

    Fixes tests for users of React Native Web.

#### :memo: Documentation

- `react-scripts`

  - [#806](https://github.com/facebook/create-react-app/pull/806) Add syntax highlighting configuration guide. ([@mareksuscak](https://github.com/mareksuscak))

#### Committers: 3

- Dan Abramov ([gaearon](https://github.com/gaearon))
- Marek Suscak ([mareksuscak](https://github.com/mareksuscak))
- Remon Georgy ([remon-georgy](https://github.com/remon-georgy))

### Migrating from 0.8.2 to 0.8.3

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

```sh
npm install --save-dev --save-exact react-scripts@0.8.3
```

You can optionally update the global CLI too:

```sh
npm install -g create-react-app@1.0.1
```

## 0.8.2 (December 7, 2016)

#### :rocket: New Feature

- `react-scripts`

  - [#1176](https://github.com/facebook/create-react-app/pull/1176) Add Subresource Integrity support. ([@XVincentX](https://github.com/XVincentX))

    The generated HTML now includes [Subresource Integrity](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity) attributes ensuring that your users aren't served malicious code if your CDN gets compromised.

#### :bug: Bug Fix

- `react-scripts`

  - [#1197](https://github.com/facebook/create-react-app/pull/1197) Let Jest handle all file types. ([@gaearon](https://github.com/gaearon))

    Since 0.8.0, we started treating imports of any unknown file extensions as URLs. However, we had to revert this change for the test configuration in 0.8.1 because of a bug causing false positives. In 0.8.2, we are fixing this and making test configuration treat imports with unknown extensions the same way as we do in the browser environment.

  - [#1194](https://github.com/facebook/create-react-app/pull/1194) Only honor relative `NODE_PATH`. ([@gaearon](https://github.com/gaearon))

    Historically we have allowed specifying `NODE_PATH` environment variable as a way to allow “absolute imports”. For example, running `NODE_PATH=src npm start` in Bash or `set NODE_PATH=src&&npm start` in Windows Cmd would let you import anything inside `src` without specifying a relative path. However, we found a few nasty edge cases when Node.js core modules end up being in `NODE_PATH` and erroneously become bundled. As a result the build would crash on some systems when some libraries are imported. To fix this, we now only honor relative paths from `NODE_PATH` in Create React App. This means the existing use case for absolute imports is still supported (`src` in the example above is relative), but absolute paths in `NODE_PATH` (such as paths to Node.js core modules) will be ignored.

  - [#1188](https://github.com/facebook/create-react-app/pull/1188) Update webpack to fix source map issues. ([@gaearon](https://github.com/gaearon))

    Since 0.8.0, we show source maps in development instead of the compiled code. However, it has come to our attention that webpack's source map implementation had issues interpreting Babel output, and caused source maps to be wrong and breakpoints to be unusable in some cases. webpack has released a fix for this, and we have updated the minimal version of webpack that we are using.

  - [#1180](https://github.com/facebook/create-react-app/pull/1180) Use `file-loader` for svgs. ([@bogdansoare](https://github.com/bogdansoare))

    Since 0.8.0, we are treating all imports with non-JS/CSS extensions the same way. Importing them gives you a string with their URL, and if their content is small enough (less than 10K), the URL is in fact an inlined [data URI](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs). However, this doesn't work well with SVGs in case you use them for a sprite system since fragments don't work in data URIs, and it's wasteful to inline the same sprite SVG many times. To fix this, we have added an exception so that SVG files never get inlined.

- `react-dev-utils`

  - [#1165](https://github.com/facebook/create-react-app/pull/1165) Chrome 'open tab' reuse an empty tab when possible. ([@n3tr](https://github.com/n3tr))

    Fixes an issue that caused two tabs to get opened instead of just one. It also fixes some cases where the window with the existing tab would not get activated.

- `babel-preset-react-app`

  - [#1179](https://github.com/facebook/create-react-app/pull/1179) Fix Babel issues in tests by applying the right transforms. ([@gaearon](https://github.com/gaearon))

    Fixes regressions in test environment that caused syntax errors with generators and `async` / `await`.

#### :nail_care: Enhancement

- `eslint-config-react-app`

  - [#1191](https://github.com/facebook/create-react-app/pull/1191) Relax peerDependencies for ESLint preset. ([@gaearon](https://github.com/gaearon))

    This allows the preset to be used in more apps without peer dependency conflicts. We still pin the exact versions in apps that haven't ejected for extra safety.

  - [#1159](https://github.com/facebook/create-react-app/pull/1159) Make jsx-no-undef rule an error. ([@existentialism](https://github.com/existentialism))

    Using an undefined type in JSX is now treated as a hard lint error because it is guaranteed to crash application at runtime.

- `react-scripts`

  - [#1175](https://github.com/facebook/create-react-app/pull/1175) Remove path module from webpack config on eject. ([@harunhasdal](https://github.com/harunhasdal))

    This makes the output after ejecting a bit cleaner.

  - [#1120](https://github.com/facebook/create-react-app/pull/1120) Add `testURL` to Jest config. ([@spudly](https://github.com/spudly))

    This fixes an error when running tests that interact with History API in jsdom.

#### :memo: Documentation

- `react-scripts`
  - [#1143](https://github.com/facebook/create-react-app/pull/1143) Add deploy to Firebase CDN on template's README (Closes [#374](https://github.com/facebook/create-react-app/issues/374)). ([@guilhermebruzzi](https://github.com/guilhermebruzzi))
  - [#1099](https://github.com/facebook/create-react-app/pull/1099) Fix minor typo/grammar. ([@alex-wilmer](https://github.com/alex-wilmer))
  - [#1168](https://github.com/facebook/create-react-app/pull/1168) Add "npm run build silently fails" to Troubleshooting. ([@gaearon](https://github.com/gaearon))

#### Committers: 12

- Alex Wilmer ([alex-wilmer](https://github.com/alex-wilmer))
- Bogdan Soare ([bogdansoare](https://github.com/bogdansoare))
- Brian Ng ([existentialism](https://github.com/existentialism))
- Dan Abramov ([gaearon](https://github.com/gaearon))
- Fabrizio Castellarin ([EnoahNetzach](https://github.com/EnoahNetzach))
- Guilherme Heynemann Bruzzi ([guilhermebruzzi](https://github.com/guilhermebruzzi))
- Harun ([harunhasdal](https://github.com/harunhasdal))
- James Newell ([jameslnewell](https://github.com/jameslnewell))
- Jirat Ki. ([n3tr](https://github.com/n3tr))
- Li Xuanji ([zodiac](https://github.com/zodiac))
- Stephen John Sorensen ([spudly](https://github.com/spudly))
- Vincenzo Chianese ([XVincentX](https://github.com/XVincentX))

### Migrating from 0.8.1 to 0.8.2

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

```sh
npm install --save-dev --save-exact react-scripts@0.8.2
```

## 0.8.1 (December 4, 2016)

Thanks to [@fson](https://github.com/fson) for cutting this release.

#### :bug: Bug Fix

- `react-scripts`
  - [#1149](https://github.com/facebook/create-react-app/pull/1149) Fix incorrectly stubbing JavaScript files with a dot in the import path in tests. ([@fson](https://github.com/fson))

### Migrating from 0.8.0 to 0.8.1

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

```sh
npm install --save-dev --save-exact react-scripts@0.8.1
```

## 0.8.0 (December 3, 2016)

Thanks to [@fson](https://github.com/fson) for cutting this release.

#### :rocket: New Feature

- `react-scripts`

  - [#944](https://github.com/facebook/create-react-app/pull/944) Crash the build during CI whenever linter warnings are encountered. ([@excitement-engineer](https://github.com/excitement-engineer))

    Linter warnings and errors are now checked during a continuous integration build (set by the `CI` environment variable) and the build will fail if any issues are found. See [Continuous Integration](https://github.com/facebook/create-react-app/blob/main/packages/react-scripts/template/README.md#continuous-integration) for more information.

  - [#1090](https://github.com/facebook/create-react-app/pull/1090) Enable proxying of WebSockets. ([@dceddia](https://github.com/dceddia))

- `create-react-app`, `react-scripts`

  - [#898](https://github.com/facebook/create-react-app/pull/898) Support Yarn. ([@fson](https://github.com/fson))

    Yarn is a new fast, reliable and secure alternative to the `npm` client. If you have Yarn installed, `create-react-app` will use it to install packages when you create an app. It also creates a `yarn.lock` file that should be checked into source control (e.g. git). This ensures the same versions of packages will be installed each time `yarn install` is run, on any machine.

    `react-scripts` now also displays instructions using `yarn` commands for projects using Yarn (projects having a `yarn.lock` file).

    To create a project using Yarn, simply install `yarn` and use `create-react-app` like before:

    ```
    npm install -g yarn create-react-app@latest

    create-react-app my-app  # Packages are now installed with Yarn.
    ```

#### :boom: Breaking Change

- `babel-preset-react-app`

  - [#902](https://github.com/facebook/create-react-app/pull/902) Enable useBuiltIns option on object-rest-spread. ([@existentialism](https://github.com/existentialism))

    Object rest spread and JSX now use the native `Object.assign()` method instead of Babel's helper function. If you are using `babel-preset-react-app` directly in your project _and_ targeting browsers that don't have `Object.assign()` available, from now on you need a polyfill for it (e.g. [`object-assign`](https://www.npmjs.com/package/object-assign)).

    **Note:** `react-scripts` already adds this polyfill, so no changes are necessary in Create React App projects.

#### :bug: Bug Fix

- `react-scripts`

  - [#978](https://github.com/facebook/create-react-app/pull/978) Move the remove-on-eject-end tag at the end of the file. ([@EnoahNetzach](https://github.com/EnoahNetzach))

    Fixes a bug in ejected configuration.

  - [#1017](https://github.com/facebook/create-react-app/pull/1017) Don't look for `.babelrc` file during test. ([@nhajidin](https://github.com/nhajidin))

    Fixes a `.babelrc` file in a parent directory interfering with the `npm test` command.

  - [#951](https://github.com/facebook/create-react-app/pull/951) Check for presence of folders before continuing eject. ([@heldinz](https://github.com/heldinz))

    Fixes a bug where `eject` failed when a `scripts` or `config` folder already existed in the project.

- `react-dev-utils`

  - [#1035](https://github.com/facebook/create-react-app/pull/1035) Fix Chrome tab reuse. ([@einarlove](https://github.com/einarlove))

    Fixes a bug with the app not opening in the existing tab in Chrome.

  - [#964](https://github.com/facebook/create-react-app/pull/964) Catch and noop call to open web browser. ([@spadin](https://github.com/spadin))

    Not being able to open a browser doesn't crash the development server now.

- `eslint-config-react-app`, `react-scripts`
  - [#953](https://github.com/facebook/create-react-app/pull/953) Fix `.ico` file extension being handled by test configuration. ([@vadzim](https://github.com/vadzim))

#### :nail_care: Enhancement

- `react-scripts`

  - [#1032](https://github.com/facebook/create-react-app/pull/1032) Add support for non-interactive terminal. ([@sheerun](https://github.com/sheerun))
  - [#1078](https://github.com/facebook/create-react-app/pull/1078) Upgrade Jest to 17.0. ([@fson](https://github.com/fson))
  - [#1059](https://github.com/facebook/create-react-app/pull/1059) Use `url-loader` with limit 10k as a default loader. ([@bebbi](https://github.com/bebbi))

    `react-scripts` now treats imports with any unknown file extension as a resource. Files with a size below 10 KB are inlined using a data URI and larger files copied to the build folder. This removes the need for an internal [whitelist of supported file extensions](https://github.com/facebook/create-react-app/issues/667). Any file that's not JS or CSS is now handled the same way.

  - [#924](https://github.com/facebook/create-react-app/pull/924) Enable JavaScript source maps in development. ([@ekaradon](https://github.com/ekaradon))
  - [#1058](https://github.com/facebook/create-react-app/pull/1058) Add missing dev argument in build script message. ([@nhajidin](https://github.com/nhajidin))
  - [#961](https://github.com/facebook/create-react-app/pull/961) Add `collectCoverageFrom` option to collect coverage on files without any tests. ([@pmackcode](https://github.com/pmackcode))

    The test script now considers all files in the project when calculating test coverage.

  - [#968](https://github.com/facebook/create-react-app/pull/968) Enable gzip compression in the development server (#966). ([@frontsideair](https://github.com/frontsideair))

- `react-dev-utils`, `react-scripts`

  - [#816](https://github.com/facebook/create-react-app/pull/816) add logging of existing default port process on start. ([@ianmcnally](https://github.com/ianmcnally))

    `react-scripts` can guess which process is running on the port 3000 when it's not available:

    ```
    Something is already running on port 3000. Probably:
      my-app
      in /Users/ian/dev/my-app

    Would you like to run the app on another port instead?
    ```

- `react-dev-utils`
  - [#963](https://github.com/facebook/create-react-app/pull/963) Allow webpack 2 as a peerDependency in react-dev-utils. ([@einarlove](https://github.com/einarlove))

#### :memo: Documentation

- `react-scripts`
  - [#1126](https://github.com/facebook/create-react-app/pull/1126) Add a note about vscode-jest. ([@orta](https://github.com/orta))
  - [#1080](https://github.com/facebook/create-react-app/pull/1080) Add a note for OSX users about watchman and jest. ([@dmr](https://github.com/dmr))
  - [#1071](https://github.com/facebook/create-react-app/pull/1071) Adds to docs - deployment with S3/CloudFront. ([@marcgarreau](https://github.com/marcgarreau))
  - [#976](https://github.com/facebook/create-react-app/pull/976) Added info on using global variables. ([@jhorneman](https://github.com/jhorneman))
  - [#996](https://github.com/facebook/create-react-app/pull/996) Remove redundant `function` from export statement. ([@gnowoel](https://github.com/gnowoel))
  - [#959](https://github.com/facebook/create-react-app/pull/959) Always build before deploying to gh-pages. ([@dsernst](https://github.com/dsernst))
  - [#974](https://github.com/facebook/create-react-app/pull/974) Gently nudge users towards https by default. ([@Swizec](https://github.com/Swizec))
- Other
  - [#1031](https://github.com/facebook/create-react-app/pull/1031) No Configuration -> Convention over Configuration. ([@sheerun](https://github.com/sheerun))
  - [#995](https://github.com/facebook/create-react-app/pull/995) Add Gatsby to alternatives. ([@KyleAMathews](https://github.com/KyleAMathews))

#### :house: Internal

- `react-scripts`
  - [#1072](https://github.com/facebook/create-react-app/pull/1072) Replace rimraf with fs-extra functions. ([@existentialism](https://github.com/existentialism))
  - [#1068](https://github.com/facebook/create-react-app/pull/1068) Remove bundledDependencies. ([@fson](https://github.com/fson))
  - [#1057](https://github.com/facebook/create-react-app/pull/1057) Update `css-loader`. ([@nhajidin](https://github.com/nhajidin))
  - [#983](https://github.com/facebook/create-react-app/pull/983) Remove custom babel-loader cache dir config. ([@fson](https://github.com/fson))
- `babel-preset-react-app`
  - [#1052](https://github.com/facebook/create-react-app/pull/1052) Remove unnecessary transform plugins for object spread to work. ([@valscion](https://github.com/valscion))
  - [#992](https://github.com/facebook/create-react-app/pull/992) Explain the usage of react-jsx-source & react-jsx-self. ([@bboysathish](https://github.com/bboysathish))
  - [#1051](https://github.com/facebook/create-react-app/pull/1051) Update babel-present-env and use node: 'current' as target. ([@valscion](https://github.com/valscion))

#### Committers: 27

- Adam Stankiewicz ([sheerun](https://github.com/sheerun))
- Alice Rose ([heldinz](https://github.com/heldinz))
- Arunoda Susiripala ([arunoda](https://github.com/arunoda))
- Brian Ng ([existentialism](https://github.com/existentialism))
- Daniel Rech ([dmr](https://github.com/dmr))
- Dave Ceddia ([dceddia](https://github.com/dceddia))
- David Ernst ([dsernst](https://github.com/dsernst))
- Dirk-Jan Rutten ([excitement-engineer](https://github.com/excitement-engineer))
- Einar Löve ([einarlove](https://github.com/einarlove))
- Fabrizio Castellarin ([EnoahNetzach](https://github.com/EnoahNetzach))
- Fatih ([frontsideair](https://github.com/frontsideair))
- Ian McNally ([ianmcnally](https://github.com/ianmcnally))
- Jurie Horneman ([jhorneman](https://github.com/jhorneman))
- Kyle Mathews ([KyleAMathews](https://github.com/KyleAMathews))
- Leo Wong ([gnowoel](https://github.com/gnowoel))
- Marc Garreau ([marcgarreau](https://github.com/marcgarreau))
- Nazim Hajidin ([nhajidin](https://github.com/nhajidin))
- Orta ([orta](https://github.com/orta))
- Patrick Mackinder ([pmackcode](https://github.com/pmackcode))
- Sandro Padin ([spadin](https://github.com/spadin))
- Sathish ([bboysathish](https://github.com/bboysathish))
- Stefan ([bebbi](https://github.com/bebbi))
- Swizec Teller ([Swizec](https://github.com/Swizec))
- Vadzim ([vadzim](https://github.com/vadzim))
- Vesa Laakso ([valscion](https://github.com/valscion))
- Ville Immonen ([fson](https://github.com/fson))
- [ekaradon](https://github.com/ekaradon)

### Migrating from 0.7.0 to 0.8.0

You may optionally update the global command (it’s not required, but it adds Yarn support for new projects):

```sh
npm install -g create-react-app@1.0.0
```

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

```sh
npm install --save-dev --save-exact react-scripts@0.8.0
```

## 0.7.0 (October 22, 2016)

Thanks to [@fson](https://github.com/fson) for cutting this release.

### Build Dependency (`react-scripts`)

- Updates Jest to [version 16.0](https://facebook.github.io/jest/blog/2016/10/03/jest-16.html), with an upgraded CLI, improved snapshot testing, new matchers and more. ([@chase](https://github.com/chase) in [#858](https://github.com/facebook/create-react-app/pull/858))
- Test setup file `src/setupTests.js` is now called after test framework initialization to support loading custom matchers. ([@just-boris](https://github.com/just-boris) in [#846](https://github.com/facebook/create-react-app/pull/846))
- Build command shows better instructions for deploying the app to GitHub Pages ([@Janpot](https://github.com/Janpot) in [#841](https://github.com/facebook/create-react-app/pull/841))
- Build command now generates an asset manifest with mappings from each filename to its final output filename. ([@lukyth](https://github.com/lukyth) in [#891](https://github.com/facebook/create-react-app/pull/891))
- Build command exits, if there are errors from UglifyJS ([@pdillon](https://github.com/pdillon) in [#859](https://github.com/facebook/create-react-app/pull/859))
- Eject output is more beautiful now. ([@azakordonets](https://github.com/azakordonets) in [#769](https://github.com/facebook/create-react-app/pull/769))
- Fixes opening the app in a new tab in Chrome. ([@unixdev](https://github.com/unixdev) in [#831](https://github.com/facebook/create-react-app/pull/831))
- Fixes environment variables not being defined as normal properties of the `process.env` object. ([@dvkndn](https://github.com/dvkndn) in [#807](https://github.com/facebook/create-react-app/pull/807))
- Fixes PostCSS autoprefixer not processing CSS files imported with CSS `@import` statements. ([@nhunzaker](https://github.com/nhunzaker) in [#929](https://github.com/facebook/create-react-app/pull/929))

### ESLint Config (`eslint-config-react-app`)

- Adds `import/no-webpack-loader-syntax` rule that forbids using custom webpack specific syntax to specify webpack loaders in import statements. ([@fson](https://github.com/fson) in [#803](https://github.com/facebook/create-react-app/pull/803))
- `react/react-in-jsx-scope` rule ("React must be in scope") is now an error. ([@gaearon](https://github.com/gaearon) in [#822](https://github.com/facebook/create-react-app/pull/822))
- `no-unused-expressions` rule now allows the use of short circuit and ternary expressions. ([@cannona](https://github.com/cannona) in [#724](https://github.com/facebook/create-react-app/pull/724))

### Babel Preset (`babel-preset-react-app`)

- The preset now detects the Node.js version in test environment and disables unnecessary ES2015 transforms using `babel-preset-env`. ([@shubheksha](https://github.com/shubheksha) in [#878](https://github.com/facebook/create-react-app/pull/878), [@JeffreyATW](https://github.com/JeffreyATW) in [#927
  ](https://github.com/facebook/create-react-app/pull/927))
- Fixes a duplicate dependency on `babel-plugin-transform-regenerator`. ([@akofman](https://github.com/akofman) in [#864](https://github.com/facebook/create-react-app/pull/864))

### Utilities (`react-dev-utils`)

- The error overlay is now disposed after fixing linting errors. ([@jarlef](https://github.com/jarlef) in [#856](https://github.com/facebook/create-react-app/pull/856))
- Adds support for webpack 2 to `webpackHotDevClient`. ([@michalkvasnicak](https://github.com/michalkvasnicak) in [#840](https://github.com/facebook/create-react-app/pull/840))

### Global CLI (`create-react-app`)

- Adds support for passing a scoped package name to the `--scripts-version` argument. ([@pdillon](https://github.com/pdillon) in [#826](https://github.com/facebook/create-react-app/pull/826))
- Fixes installing pre-release versions using a tarball URL with the `--scripts-version` argument. ([@jihchi](https://github.com/jihchi) in [#876](https://github.com/facebook/create-react-app/pull/876))

### Migrating from 0.6.1 to 0.7.0

You may optionally update the global command (it’s not required):

```sh
npm install -g create-react-app@0.6.0
```

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

```sh
npm install --save-dev --save-exact react-scripts@0.7.0
```

### Breaking Change in 0.7.0

#### Updating Snapshots

Jest 16 includes [improvements to snapshot testing and changes to the snapshot format](https://facebook.github.io/jest/blog/2016/10/03/jest-16.html#snapshot-updates). If your project uses snapshot testing, you'll need to update the snapshot files. To update the snapshots, run:

```sh
npm test -- -u
```

## 0.6.1 (September 27, 2016)

### Build Dependency (`react-scripts`)

- Babel and ESLint configuration is now placed into `package.json` after ejecting. ([@montogeek](https://github.com/montogeek) in [#773](https://github.com/facebook/create-react-app/pull/773))

### Utilities (`react-dev-utils`)

- Fixes the syntax error overlay padding. ([@fson](https://github.com/fson) in [#758](https://github.com/facebook/create-react-app/pull/758))

### Migrating from 0.6.0 to 0.6.1

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

```sh
npm install --save-dev --save-exact react-scripts@0.6.1
```

## 0.6.0 (September 25, 2016)

### Build Dependency (`react-scripts`)

- Adds an overlay for syntax errors in development. ([@gaearon](https://github.com/gaearon) in [#744](https://github.com/facebook/create-react-app/pull/744))

### Utilities (`react-dev-utils`)

- Adds an alternative WebpackDevServer client that displays the error overlay. ([@gaearon](https://github.com/gaearon) in [#744](https://github.com/facebook/create-react-app/pull/744))

### Migrating from 0.5.1 to 0.6.0

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

```sh
npm install --save-dev --save-exact react-scripts@0.6.0
```

**Note: If the project fails to start, remove `node_modules`, ensure `react-scripts` is `0.6.0` in your `package.json`, and run `npm install` again. There seems to be an [npm bug](https://github.com/npm/npm/issues/14073) affecting this update.**

## 0.5.1 (September 23, 2016)

### Build Dependency (`react-scripts`)

- Updates `react-dev-utils` dependency

### Utilities (`react-dev-utils`)

- Fixes `%PUBLIC_URL%` replacement to work when specified multiple times. ([@fson](https://github.com/fson) in [#731](https://github.com/facebook/create-react-app/pull/731))

### Migrating from 0.5.0 to 0.5.1

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

```sh
npm install --save-dev --save-exact react-scripts@0.5.1
```

## 0.5.0 (September 23, 2016)

### Build Dependency (`react-scripts`)

- Adds [support for `public` folder](https://github.com/facebook/create-react-app/blob/main/packages/react-scripts/template/README.md#using-the-public-folder) with arbitrary assets. ([@gaearon](https://github.com/gaearon) in [#703](https://github.com/facebook/create-react-app/pull/703))
- You can now [specify defaults](https://github.com/facebook/create-react-app/blob/main/packages/react-scripts/template/README.md#adding-development-environment-variables-in-env) for environment variables with `.env` file. ([@ayrton](https://github.com/ayrton) in [#695](https://github.com/facebook/create-react-app/pull/695))
- Ejecting now generates proper `.babelrc` and `.eslintrc`. ([@fson](https://github.com/fson) in [#689](https://github.com/facebook/create-react-app/pull/689), [@gaearon](https://github.com/gaearon) in [#705](https://github.com/facebook/create-react-app/pull/705))
- Some React warnings now [include the component stacktrace](https://twitter.com/dan_abramov/status/779308833399332864). ([@gaearon](https://github.com/gaearon) in [#716](https://github.com/facebook/create-react-app/pull/716))
- `npm start` doesn’t fail in a composed Docker container. ([@arekkas](https://github.com/arekkas) in [#711](https://github.com/facebook/create-react-app/issues/711))
- The projects generated with `eject` are now cleaner. ([@gaearon](https://github.com/gaearon) in [#723](https://github.com/facebook/create-react-app/pull/723))
- The project is now managed as a monorepo. ([@ryanyogan](https://github.com/ryanyogan) in [#419](https://github.com/facebook/create-react-app/pull/419), [@fson](https://github.com/fson) in [#678](https://github.com/facebook/create-react-app/pull/678))

### ESLint Config (`eslint-config-react-app`)

- Published for the first time! ([@fson](https://github.com/fson) in [#689](https://github.com/facebook/create-react-app/pull/689))
- Added [`react/no-danger-with-children`](https://github.com/yannickcr/eslint-plugin-react/blob/v6.3.0/docs/rules/no-danger-with-children.md) and [`react/style-prop-object`](https://github.com/yannickcr/eslint-plugin-react/blob/v6.3.0/docs/rules/style-prop-object.md) rules. ([@fson](https://github.com/fson) in [#696](https://github.com/facebook/create-react-app/pull/696))

### Babel Preset (`babel-preset-react-app`)

- Published for the first time! ([@fson](https://github.com/fson) in [#701](https://github.com/facebook/create-react-app/pull/701))

### Utilities (`react-dev-utils`)

- Published for the first time! ([@gaearon](https://github.com/gaearon) in [#723](https://github.com/facebook/create-react-app/pull/723))

### Global CLI (`create-react-app`)

- Added `README` to npm. There were no other changes.

### Migrating from 0.4.3 to 0.5.0

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

```sh
npm install --save-dev --save-exact react-scripts@0.5.0
```

### Breaking Changes in 0.5.0

#### Global ESLint Plugin Versions

If you used a global ESLint installation for the editor integration, you’ll need to install [these versions of global ESLint packages](https://github.com/facebook/create-react-app/blob/c092086b1b256fd081f10744f90d216dd5217e29/packages/eslint-config-react-app/package.json#L14-L19).

#### Moving `index.html` into `public` Folder

You’ll also need to create a new folder called `public` in the root of your project. Then, move `index.html` and files it references (such as a favicon) into that folder.

You can no longer reference any files from `./src` in `index.html`. Instead, `public/index.html` can now only reference files other inside of the `public` folder using a special variable called `%PUBLIC_URL%`.

For example, instead of:

```html
<link rel="shortcut icon" href="./src/favicon.ico" />
```

You would need to move both `index.html` and `src/favicon.ico` into the `public` folder, and change `<link>` to look like this:

```html
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
```

This ensures it become a part of the build output, and resolves correctly both with client-side routing and non-root `homepage` in `package.json`. Read more about [using the `public` folder](https://github.com/facebook/create-react-app/blob/main/packages/react-scripts/template/README.md#using-the-public-folder) and [why these changes were made](https://github.com/facebook/create-react-app/pull/703).

## 0.4.3 (September 18, 2016)

This is a hotfix release for a broken package.<br>
It contained no changes to the code.

### Build Dependency (`react-scripts`)

- Fixes a packaging issue that affected npm 2. ([#676](https://github.com/facebook/create-react-app/issues/676))

### Migrating from 0.4.2 to 0.4.3

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

```sh
npm install --save-dev --save-exact react-scripts@0.4.3
```

## 0.4.2 (September 18, 2016)

### Build Dependency (`react-scripts`)

- Lint output in editor is now opt-in because, due to [this ESLint issue](https://github.com/eslint/eslint/issues/3458), it is broken by default in Atom. ([@fson](https://github.com/fson) in [#649](https://github.com/facebook/create-react-app/pull/649))
- Fixes an issue causing compile errors when project folder is inside a symlink. ([@motiz88](https://github.com/motiz88) in [#648](https://github.com/facebook/create-react-app/pull/648))
- You can now import `jpeg`, `wav`, `mp3`, `m4a`, `aac`, and `oga`. ([@mareksuscak](https://github.com/mareksuscak) in [#624](https://github.com/facebook/create-react-app/pull/624), [@danharper](https://github.com/danharper) in [#665](https://github.com/facebook/create-react-app/pull/665))
- Fixes false positives caused by the case sensitive import warning on Windows. ([@Urthen](https://github.com/Urthen) in [#593](https://github.com/facebook/create-react-app/pull/593))
- With Docker, `*.json.gzip` files are no longer created in the project folder. ([@thangngoc89](https://github.com/thangngoc89) in [#620](https://github.com/facebook/create-react-app/pull/620))
- Proxy network errors now abort requests instead of hanging. ([@cloudmu](https://github.com/cloudmu) in [#588](https://github.com/facebook/create-react-app/pull/588))
- Connection to the development server does not get interrupted in HTTPS mode. ([@dceddia](https://github.com/dceddia) in [#652](https://github.com/facebook/create-react-app/pull/652))
- Unsupported Node versions now print a warning. ([@fson](https://github.com/fson) in [#575](https://github.com/facebook/create-react-app/pull/575))
- Importing assets with special characters like `@` now works with tests. ([@fson](https://github.com/fson) in [#584](https://github.com/facebook/create-react-app/pull/584))
- Undefined variable lint rule is promoted from a warning to an error. ([@gaearon](https://github.com/gaearon) in [#669](https://github.com/facebook/create-react-app/pull/669))
- Variables starting with underscore no longer trigger the “unused variable” rule. ([@valscion](https://github.com/valscion) in [#640](https://github.com/facebook/create-react-app/pull/640))
- We now print a friendly error when required files are missing. ([@vnctaing](https://github.com/vnctaing) in [#653](https://github.com/facebook/create-react-app/pull/653))
- The output after creating a project is better formatted. ([@btnwtn](https://github.com/btnwtn) in [#629](https://github.com/facebook/create-react-app/pull/629))
- Development server logs are less noisy. ([@gaearon](https://github.com/gaearon) in [122068](https://github.com/facebook/create-react-app/commit/1220683276dd9eb2f2719aece7f40bf2ffb397b4))

### Global CLI (`create-react-app`)

- It now runs on early Node versions to print a friendly warning instead of crashing. ([@sotojuan](https://github.com/sotojuan) in [fc3ab4](https://github.com/facebook/create-react-app/commit/fc3ab46d2a54f142f9287ce7de9ab2fc2514487d))
- We now print a friendly message when you create a project with invalid name. ([@mareksuscak](https://github.com/mareksuscak) in [#628](https://github.com/facebook/create-react-app/pull/628))
- Passing a custom fork of `react-scripts` to `create-react-app` with `--scripts-version` works again. ([@yesmeck](https://github.com/yesmeck) in [#632](https://github.com/facebook/create-react-app/pull/632))

### Migrating from 0.4.1 to 0.4.2

You may optionally update the global command (it’s not required):

```sh
npm install -g create-react-app@0.4.2
```

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

```sh
npm install --save-dev --save-exact react-scripts@0.4.2
```

## 0.4.1 (September 3, 2016)

### Build Dependency (`react-scripts`)

- We now support (but [don’t recommend](https://github.com/facebook/create-react-app/issues/87#issuecomment-234627904)) `.jsx` file extension. ([@tizmagik](https://github.com/tizmagik) in [#563](https://github.com/facebook/create-react-app/pull/563))
- Proxy request errors are now printed to the console. ([@cloudmu](https://github.com/cloudmu) in [#502](https://github.com/facebook/create-react-app/pull/502))

### Migrating from 0.4.0 to 0.4.1

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

```sh
npm install --save-dev --save-exact react-scripts@0.4.1
```

## 0.4.0 (September 2, 2016)

### Build Dependency (`react-scripts`)

- **Breaking Change:** Disabled implicit serving of source files in development. ([@gaearon](https://github.com/gaearon) in [#551](https://github.com/facebook/create-react-app/pull/551))
- You can use `NODE_PATH` environment variable for absolute `import` paths. ([@jimmyhmiller](https://github.com/jimmyhmiller) in [#476](https://github.com/facebook/create-react-app/pull/476))
- If `src/setupTests.js` exists, it will be used to setup the test environment. ([@gaelduplessix](https://github.com/gaelduplessix) in [#548](https://github.com/facebook/create-react-app/pull/548))
- If `HTTPS` environment variable is set to `true`, development server will run in HTTPS mode. ([@dceddia](https://github.com/dceddia) in [#552](https://github.com/facebook/create-react-app/pull/552))

### Migrating from 0.3.1 to 0.4.0

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

```sh
npm install --save-dev --save-exact react-scripts@0.4.0
```

### Breaking Change in 0.4.0

Paths like `/src/somefile.png` used to be served in development, but only by accident. They never worked in production builds. Since 0.4.0, we [don’t serve static files by default in development anymore either](https://github.com/facebook/create-react-app/pull/551). This removes a dangerous inconsistency that we never intentionally supported.

If you need a static file to be part for the build, [import it from JavaScript and you will get its filename](https://github.com/facebook/create-react-app/blob/main/template/README.md#adding-images-and-fonts). This ensures it gets included into the production build as well, and its filename contains the content hash.

If you used static files with `<link href>`, [read this new guide](https://github.com/facebook/create-react-app/blob/main/template/README.md#referring-to-static-assets-from-link-href) on how to make sure these files get included into the builds. For example, you can replace `<link href="/src/favicons/favicon-32.png">` with `<link href="./src/favicons/favicon-32.png">`, and then webpack will recognize it and include it into the build.

If you referenced some other files from `index.html`, please file an issue to discuss your use case. In the meantime, you can serve them from a separate static server until your use case is supported.

## 0.3.1 (September 2, 2016)

### Build Dependency (`react-scripts`)

- Bumps Jest dependency to fix a few issues discovered yesterday. ([@cpojer](https://github.com/cpojer) in [facebook/jest#1580](https://github.com/facebook/jest/pull/1580), [@insin](https://github.com/insin) in [facebook/jest#1574](https://github.com/facebook/jest/pull/1574))

### Migrating from 0.3.0 to 0.3.1

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

```sh
npm install --save-dev --save-exact react-scripts@0.3.1
```

## 0.3.0 (September 1, 2016)

### Build Dependency (`react-scripts`)

- Testing is [now supported](https://github.com/facebook/create-react-app/blob/main/template/README.md#running-tests)! ([Jest project contributors](https://github.com/facebook/jest/pulls?q=is%3Apr+is%3Aclosed), [@cpojer](https://github.com/cpojer) in [#250](https://github.com/facebook/create-react-app/pull/250), [@gaearon](https://github.com/gaearon) in [#378](https://github.com/facebook/create-react-app/pull/378), [#530](https://github.com/facebook/create-react-app/pull/530), [#533](https://github.com/facebook/create-react-app/pull/533))
- Static files such as CSS, images, and fonts, can now exist outside `src` directory. ([@fson](https://github.com/fson) in [#504](https://github.com/facebook/create-react-app/pull/504))
- **Breaking Change:** Local paths in `<link href>` in `index.html` will now be correctly resolved, so deleting `favicon.ico` is not an error anymore. ([@andreypopp](https://github.com/andreypopp) in [#428](https://github.com/facebook/create-react-app/pull/428))
- Removed an annoying lint rule that warned for `<div ref={node => this.node = node}>`. ([@mrscobbler](https://github.com/mrscobbler) in [#529](https://github.com/facebook/create-react-app/pull/529))
- Temporarily disabled `react-constant-elements` Babel transform because of its bugs. ([@gaearon](https://github.com/gaearon) in [#534](https://github.com/facebook/create-react-app/pull/534))
- Fixed a permission issue with Docker. ([@gaearon](https://github.com/gaearon) in [73c940](https://github.com/facebook/create-react-app/commit/73c940a73205d761230f8d6bf81ecfd460ba28a9))
- Fixed an issue with generator syntax in Jest that occurred in an alpha release. ([@gaearon](https://github.com/gaearon) in [#535](https://github.com/facebook/create-react-app/pull/535))

### Global CLI (`create-react-app`)

- You can now create a project in a folder that already contains an `.idea` folder, which is necessary for future WebStorm integration. ([@denofevil](https://github.com/denofevil) in [#522](https://github.com/facebook/create-react-app/pull/522))

### Migrating from 0.2.3 to 0.3.0

You may optionally update the global command (it’s not required):

```sh
npm install -g create-react-app@0.3.0
```

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

```sh
npm install --save-dev --save-exact react-scripts@0.3.0
```

#### Breaking Change

Now `favicon.ico` is not treated specially anymore.<br>
If you use it, move it to `src` and add the following line to `<head>` in your HTML:

```html
<link rel="shortcut icon" href="./src/favicon.ico" />
```

#### New Feature

Since 0.3.0 added a test runner, we recommend that you add it to the `scripts` section of your `package.json` like this:

```js
  // ...
  "scripts": {
    // ...
    "test": "react-scripts test --env=jsdom"
  }
```

[Then read the testing guide to learn more about using it!](https://github.com/facebook/create-react-app/blob/main/template/README.md#running-tests)

## 0.2.3 (August 25, 2016)

### Build Dependency (`react-scripts`)

- You can now [proxy requests to an API server](https://github.com/facebook/create-react-app/blob/ef94b0561d5afb9b50b905fa5cd3f94e965c69c0/template/README.md#proxying-api-requests-in-development) without worrying about CORS. ([@gaearon](https://github.com/gaearon) in [#282](https://github.com/facebook/create-react-app/pull/282))
- You can now [pass custom environment variables](https://github.com/facebook/create-react-app/blob/ef94b0561d5afb9b50b905fa5cd3f94e965c69c0/template/README.md#adding-custom-environment-variables) to your application. ([@eliperelman](https://github.com/eliperelman) in [#342](https://github.com/facebook/create-react-app/pull/342))
- You can now [use `async` and `await`](https://ponyfoo.com/articles/understanding-javascript-async-await) syntax. ([@gaearon](https://github.com/gaearon) in [#327](https://github.com/facebook/create-react-app/pull/327), [@fson](https://github.com/fson) in [#332](https://github.com/facebook/create-react-app/pull/332))
- Paths with period in them now load successfully on the development server. ([@mxstbr](https://github.com/mxstbr) in [#422](https://github.com/facebook/create-react-app/pull/422))
- Images with `.webp` extension are now supported. ([@gafemoyano](https://github.com/gafemoyano) in [#458](https://github.com/facebook/create-react-app/pull/458))
- The most recent version of React is now added to `package.json`. ([@wdhorton](https://github.com/wdhorton) in [#477](https://github.com/facebook/create-react-app/pull/477))
- Babel configuration is simplified. ([@kripod](https://github.com/kripod) in [#490](https://github.com/facebook/create-react-app/pull/490))

### Migrating from 0.2.2 to 0.2.3

Update `react-scripts` to point to `0.2.3` in your `package.json` and run `npm install`. You shouldn’t need to do anything else.

Newly created projects will use `0.2.3` automatically. You **don’t** need to update the global `create-react-app` CLI itself. It stays at `0.2.0` for now because it doesn’t have any changes.

## 0.2.2 (August 22, 2016)

### Build Dependency (`react-scripts`)

- When the bundle size changes, we now display the difference after build. ([@elijahmanor](https://github.com/elijahmanor) in [#340](https://github.com/facebook/create-react-app/pull/340))
- `npm install`ing a missing dependency now forces a rebuild. ([@gaearon](https://github.com/gaearon) in [#349](https://github.com/facebook/create-react-app/pull/349))
- Autoprefixer config now includes more commonly supported browsers. ([@kripod](https://github.com/kripod) in [#345](https://github.com/facebook/create-react-app/pull/345))
- All the configuration is now documented inline so ejecting doesn’t leave you in the dark. ([@gaearon](https://github.com/gaearon) in [#362](https://github.com/facebook/create-react-app/pull/362))
- `Object.assign()` polyfill is now bundled by default. ([@gaearon](https://github.com/gaearon) in [#399](https://github.com/facebook/create-react-app/pull/399))
- [React Native Web](https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/) now works out of the box. ([@grigio](https://github.com/grigio) in [#407](https://github.com/facebook/create-react-app/pull/407))
- Same asset filenames in different folders don’t confuse the server now. ([@arunoda](https://github.com/arunoda) in [#446](https://github.com/facebook/create-react-app/pull/446))
- The `otf` font format is now supported. ([@A-gambit](https://github.com/A-gambit) in [#434](https://github.com/facebook/create-react-app/pull/434))
- The `new-cap` linting rule has been disabled thanks to feedback from Immutable.js users. ([@rricard](https://github.com/rricard) in [#470](https://github.com/facebook/create-react-app/pull/470))

### Migrating from 0.2.1 to 0.2.2

Update `react-scripts` to point to `0.2.2` in your `package.json` and run `npm install`. You shouldn’t need to do anything else.

Newly created projects will use `0.2.2` automatically. You **don’t** need to update the global `create-react-app` CLI itself. It stays at `0.2.0` for now because it doesn’t have any changes.

## 0.2.1 (August 1, 2016)

### Build Dependency (`react-scripts`)

- Fixes an issue with `npm start` taking a very long time on OS X with Firewall enabled ([@gaearon](https://github.com/gaearon) in [#319](https://github.com/facebook/create-react-app/pull/319))
- Fixes an issue with webpack eating a lot of CPU in some cases ([@dceddia](https://github.com/dceddia) in [#294](https://github.com/facebook/create-react-app/pull/294))
- We now warn if you import a file with mismatched casing because this breaks the watcher ([@alexzherdev](https://github.com/alexzherdev) in [#266](https://github.com/facebook/create-react-app/pull/266))
- CSS files specifying `?v=` after asset filenames, such as Font Awesome, now works correctly ([@alexzherdev](https://github.com/alexzherdev) in [#298](https://github.com/facebook/create-react-app/pull/298))
- Issues with `npm link`ing `react-scripts` have been fixed ([@dallonf](https://github.com/dallonf) in [#277](https://github.com/facebook/create-react-app/pull/277))
- We now use `/static` prefix for assets both in development and production ([@gaearon](https://github.com/gaearon) in [#278](https://github.com/facebook/create-react-app/pull/278))

### Migrating from 0.2.0 to 0.2.1

Update `react-scripts` to point to `0.2.1` in your `package.json` and run `npm install`. You shouldn’t need to do anything else. If you see a warning about wrong file casing next time you `npm start`, fix your imports to use the correct filename casing.

Newly created projects will use `0.2.1` automatically. You **don’t** need to update the global `create-react-app` CLI itself. It stays at `0.2.0` for now because it doesn’t have any changes.

## 0.2.0 (July 28, 2016)

### Build Dependency (`react-scripts`)

- You can now enable deployment to GitHub Pages by adding `homepage` field to `package.json` ([@dhruska](https://github.com/dhruska) in [#94](https://github.com/facebook/create-react-app/pull/94))
- Development server now runs on `0.0.0.0` and works with VirtualBox ([@JWo1F](https://github.com/JWo1F) in [#128](https://github.com/facebook/create-react-app/pull/128))
- Cloud9 and Nitrous online IDEs are now supported ([@gaearon](https://github.com/gaearon) in [2fe84e](https://github.com/facebook/create-react-app/commit/2fe84ecded55f1d5258d91f9c2c07698ae0d2fb4))
- When `3000` port is taken, we offer to use another port ([@chocnut](https://github.com/chocnut) in [#101](https://github.com/facebook/create-react-app/pull/101), [2edf21](https://github.com/facebook/create-react-app/commit/2edf2180f2aa6bf647807d0b1fcd95f4cfe4a558))
- You can now `import` CSS files from npm modules ([@glennreyes](https://github.com/glennreyes) in [#105](https://github.com/facebook/create-react-app/pull/105), [@breaddevil](https://github.com/breaddevil) in [#178](https://github.com/facebook/create-react-app/pull/178))
- `fetch` and `Promise` polyfills are now always included ([@gaearon](https://github.com/gaearon) in [#235](https://github.com/facebook/create-react-app/pull/235))
- Regenerator runtime is now included if you use ES6 generators ([@gaearon](https://github.com/gaearon) in [#238](https://github.com/facebook/create-react-app/pull/238))
- Generated project now contains `.gitignore` ([@npverni](https://github.com/npverni) in [#79](https://github.com/facebook/create-react-app/pull/79), [@chibicode](https://github.com/chibicode) in [#112](https://github.com/facebook/create-react-app/pull/112))
- ESLint config is now more compatible with Flow ([@gaearon](https://github.com/gaearon) in [#261](https://github.com/facebook/create-react-app/pull/261))
- A stylistic lint rule about method naming has been removed ([@mxstbr](https://github.com/mxstbr) in [#152](https://github.com/facebook/create-react-app/pull/157))
- A few unobtrusive accessibility lint rules have been added ([@evcohen](https://github.com/evcohen) in [#175](https://github.com/facebook/create-react-app/pull/175))
- A `.babelrc` in parent directory no longer causes an error ([@alexzherdev](https://github.com/alexzherdev) in [#236](https://github.com/facebook/create-react-app/pull/236))
- Files with `.json` extension are now discovered ([@gaearon](https://github.com/gaearon) in [a11d6a](https://github.com/facebook/create-react-app/commit/a11d6a398f487f9163880dd34667b1d3e14b147a))
- Bug fixes from transitive dependencies are included ([#126](https://github.com/facebook/create-react-app/issues/126))
- Linting now works with IDEs if you follow [these](https://github.com/facebook/create-react-app/blob/main/template/README.md#display-lint-output-in-the-editor) instructions ([@keyanzhang](https://github.com/keyanzhang) in [#149](https://github.com/facebook/create-react-app/pull/149))
- After building, we now print gzipped bundle size ([@lvwrence](https://github.com/lvwrence) in [#229](https://github.com/facebook/create-react-app/pull/229))

### Global CLI (`create-react-app`)

- It enforces that you have Node >= 4 ([@conorhastings](https://github.com/conorhastings) in [#88](https://github.com/facebook/create-react-app/pull/88))
- It handles `--version` flag correctly ([@mxstbr](https://github.com/mxstbr) in [#152](https://github.com/facebook/create-react-app/pull/152))

### Migrating from 0.1.0 to 0.2.0

You may optionally update the global command (it’s not required):

```sh
npm install -g create-react-app@0.2.0
```

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

```sh
npm install --save-dev --save-exact react-scripts@0.2.0
```

You may need to fix a few lint warnings about missing `<img alt>` tag, but everything else should work out of the box. If you intend to deploy your site to GitHub Pages, you may now [add `homepage` field to `package.json`](https://github.com/facebook/create-react-app/blob/main/template/README.md#deploy-to-github-pages). If you had [issues with integrating editor linter plugins](https://github.com/facebook/create-react-app/issues/124), follow [these new instructions](https://github.com/facebook/create-react-app/blob/main/template/README.md#display-lint-output-in-the-editor).

## 0.1.0 (July 22, 2016)

- Initial public release


================================================
FILE: CHANGELOG-1.x.md
================================================
## 2.0.3 and Newer Versions

**Please refer to [CHANGELOG-2.x.md](./CHANGELOG-2.x.md) for the 2.x range, and [CHANGELOG.md](CHANGELOG.md) for the newer versions.**

## 1.1.5 (August 24, 2018)

- `react-scripts`

  - Update the `webpack-dev-server` dependency

- `react-dev-utils`

  - [#4866](https://github.com/facebook/create-react-app/pull/4866) Fix a Windows-only vulnerability (`CVE-2018-6342`) in the development server ([@acdlite](https://github.com/acdlite))
  - Update the `sockjs-client` dependency

#### Committers: 1

- Andrew Clark ([acdlite](https://github.com/acdlite))

### Migrating from 1.1.4 to 1.1.5

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

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

or

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

## 1.1.4 (April 3, 2018)

#### :bug: Bug Fix

- `react-dev-utils`

  - [#4250](https://github.com/facebook/create-react-app/pull/4250) Upgrade `detect-port-alt` to fix [#4189](https://github.com/facebook/create-react-app/issues/4189). ([@Timer](https://github.com/Timer))

#### Committers: 1

- Joe Haddad ([Timer](https://github.com/Timer))

### Migrating from 1.1.3 to 1.1.4

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

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

or

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

## 1.1.3 (April 3, 2018)

#### :bug: Bug Fix

- `react-scripts`

  - [#4247](https://github.com/facebook/create-react-app/pull/4247) Fix `environment.dispose is not a function` error caused by a Jest bug. ([@gaearon](https://github.com/gaearon))

#### Committers: 1

- Dan Abramov ([gaearon](https://github.com/gaearon))

### Migrating from 1.1.2 to 1.1.3

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

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

or

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

## 1.1.2 (April 3, 2018)

#### :bug: Bug Fix

- `react-scripts`

  - [#4085](https://github.com/facebook/create-react-app/pull/4085) Resolve `.js` before `.mjs` files to unbreak dependencies with native ESM support. ([@leebyron](https://github.com/leebyron))

#### :memo: Documentation

- `react-scripts`

  - [#4197](https://github.com/facebook/create-react-app/pull/4197) Add troubleshooting for Github Pages. ([@xnt](https://github.com/xnt))

#### Committers: 2

- Lee Byron ([leebyron](https://github.com/leebyron))
- Vicente Plata ([xnt](https://github.com/xnt))

### Migrating from 1.1.1 to 1.1.2

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

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

or

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

## 1.1.1 (February 2, 2018)

#### :bug: Bug Fix

- `react-scripts`
  - [#4000](https://github.com/facebook/create-react-app/pull/4000) Fix escaping `$` in environment variables. ([@iansu](https://github.com/iansu))

#### :nail_care: Enhancement

- `react-scripts`
  - [#4006](https://github.com/facebook/create-react-app/pull/4006) Add Node 9 compatibility for `fsevents`. ([@gaearon](https://github.com/gaearon))

#### :memo: Documentation

- `react-scripts`
  - [#3971](https://github.com/facebook/create-react-app/pull/3971) Update instructions for continuous delivery with Netlify. ([@hubgit](https://github.com/hubgit))
  - [#3894](https://github.com/facebook/create-react-app/pull/3894) Include `{json,css}` files in prettier command. ([@reyronald](https://github.com/reyronald))

#### :house: Internal

- `create-react-app`
  - [#3853](https://github.com/facebook/create-react-app/pull/3853) pin envinfo version to 3.4.2. ([@bondz](https://github.com/bondz))

#### Committers: 6

- Alf Eaton ([hubgit](https://github.com/hubgit))
- Bond ([bondz](https://github.com/bondz))
- Dan Abramov ([gaearon](https://github.com/gaearon))
- Ian Sutherland ([iansu](https://github.com/iansu))
- Ronald Rey ([reyronald](https://github.com/reyronald))

### Migrating from 1.1.0 to 1.1.1

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

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

or

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

## 1.1.0 (January 15, 2018)

#### :rocket: New Feature

- `react-scripts`

  - [#3387](https://github.com/facebook/create-react-app/pull/3387) Add support for variable expansion in `.env` files. ([@moos](https://github.com/moos))

- `react-error-overlay`

  - [#3474](https://github.com/facebook/create-react-app/pull/3474) Allow the error overlay to be unregistered. ([@Timer](https://github.com/Timer))

- `create-react-app`

  - [#3408](https://github.com/facebook/create-react-app/pull/3408) Add `--info` flag to help gather bug reports. ([@tabrindle](https://github.com/tabrindle))
  - [#3409](https://github.com/facebook/create-react-app/pull/3409) Add `--use-npm` flag to bypass Yarn even on systems that have it. ([@tabrindle](https://github.com/tabrindle))
  - [#3725](https://github.com/facebook/create-react-app/pull/3725) Extend `--scripts-version` to include `.tar.gz` format. ([@SaschaDens](https://github.com/SaschaDens))
  - [#3629](https://github.com/facebook/create-react-app/pull/3629) Allowing `"file:<path>"` `--scripts-version` values. ([@GreenGremlin](https://github.com/GreenGremlin))

#### :bug: Bug Fix

- `babel-preset-react-app`, `react-scripts`

  - [#3788](https://github.com/facebook/create-react-app/pull/3788) Fix object destructuring inside an array on Node 6. ([@gaearon](https://github.com/gaearon))

- `react-dev-utils`

  - [#3784](https://github.com/facebook/create-react-app/pull/3784) Detach browser process from the shell on Linux. ([@gaearon](https://github.com/gaearon))
  - [#3726](https://github.com/facebook/create-react-app/pull/3726) Use proxy for all request methods other than `GET`. ([@doshisid](https://github.com/doshisid))
  - [#3440](https://github.com/facebook/create-react-app/pull/3440) Print full directory name from `lsof`. ([@rmccue](https://github.com/rmccue))
  - [#2071](https://github.com/facebook/create-react-app/pull/2071) Fix broken console clearing on Windows. ([@danielverejan](https://github.com/danielverejan))
  - [#3686](https://github.com/facebook/create-react-app/pull/3686) Fix starting a project in directory with `++` in the name. ([@Norris1z](https://github.com/Norris1z))

- `create-react-app`

  - [#3320](https://github.com/facebook/create-react-app/pull/3320) Fix offline installation to respect proxy from `.npmrc`. ([@mdogadailo](https://github.com/mdogadailo))

- `react-scripts`

  - [#3537](https://github.com/facebook/create-react-app/pull/3537) Add `mjs` and `jsx` filename extensions to `file-loader` exclude pattern. ([@iansu](https://github.com/iansu))
  - [#3511](https://github.com/facebook/create-react-app/pull/3511) Unmount the component in the default generated test. ([@gaearon](https://github.com/gaearon))

#### :nail_care: Enhancement

- `react-scripts`

  - [#3730](https://github.com/facebook/create-react-app/pull/3730) Print when `HOST` environment variable is set. ([@iansu](https://github.com/iansu))
  - [#3455](https://github.com/facebook/create-react-app/pull/3455) Add a localhost-only log message pointing folks to the PWA docs. ([@jeffposnick](https://github.com/jeffposnick))
  - [#3416](https://github.com/facebook/create-react-app/pull/3416) Improve eject message. ([@xjlim](https://github.com/xjlim))

- `create-react-app`

  - [#3740](https://github.com/facebook/create-react-app/pull/3740) Allow more non-conflicting files in initial project directory. ([@GreenGremlin](https://github.com/GreenGremlin))

- `react-dev-utils`

  - [#3104](https://github.com/facebook/create-react-app/pull/3104) Add link to deployment docs after build. ([@viankakrisna](https://github.com/viankakrisna))
  - [#3652](https://github.com/facebook/create-react-app/pull/3652) Add `code-insiders` to the editor list. ([@shrynx](https://github.com/shrynx))
  - [#3700](https://github.com/facebook/create-react-app/pull/3700) Add editor support for Sublime Dev & VSCode Insiders. ([@yyx990803](https://github.com/yyx990803))
  - [#3545](https://github.com/facebook/create-react-app/pull/3545) Autodetect MacVim editor. ([@gnapse](https://github.com/gnapse))

- `react-dev-utils`, `react-error-overlay`

  - [#3465](https://github.com/facebook/create-react-app/pull/3465) Open editor to exact column from build error overlay. ([@tharakawj](https://github.com/tharakawj))

- `react-dev-utils`, `react-scripts`

  - [#3721](https://github.com/facebook/create-react-app/pull/3721) Support setting `none` in `REACT_EDITOR` environment variable. ([@raerpo](https://github.com/raerpo))

- `eslint-config-react-app`

  - [#3716](https://github.com/facebook/create-react-app/pull/3716) Relax `no-cond-assign` rule. ([@gaearon](https://github.com/gaearon))

#### :memo: Documentation

- User Guide

  - [#3659](https://github.com/facebook/create-react-app/pull/3659) Add info about service-worker and HTTP caching headers into Firebase section. ([@bobrosoft](https://github.com/bobrosoft))
  - [#3515](https://github.com/facebook/create-react-app/pull/3515) Add Powershell commands to README.md. ([@Gua-naiko-che](https://github.com/Gua-naiko-che))
  - [#3656](https://github.com/facebook/create-react-app/pull/3656) Better documentation for setupTests.js when ejecting. ([@dannycalleri](https://github.com/dannycalleri))
  - [#1791](https://github.com/facebook/create-react-app/pull/1791) Add link for automatic deployment to azure. ([@ulrikstrid](https://github.com/ulrikstrid))
  - [#3717](https://github.com/facebook/create-react-app/pull/3717) Update README.md. ([@maecapozzi](https://github.com/maecapozzi))
  - [#3710](https://github.com/facebook/create-react-app/pull/3710) Link to an explanation for forking react-scripts. ([@gaearon](https://github.com/gaearon))
  - [#3709](https://github.com/facebook/create-react-app/pull/3709) Document adding a router. ([@gaearon](https://github.com/gaearon))
  - [#3670](https://github.com/facebook/create-react-app/pull/3670) Fix typo in the User Guide. ([@qbahers](https://github.com/qbahers))
  - [#3645](https://github.com/facebook/create-react-app/pull/3645) Update README.md. ([@elie222](https://github.com/elie222))
  - [#3533](https://github.com/facebook/create-react-app/pull/3533) Use safer/more aesthetic syntax for setting environment variables on Windows. ([@cdanielsen](https://github.com/cdanielsen))
  - [#3605](https://github.com/facebook/create-react-app/pull/3605) Updated Debugging Tests for VSCode. ([@amadeogallardo](https://github.com/amadeogallardo))
  - [#3601](https://github.com/facebook/create-react-app/pull/3601) Fixed typo in webpack.config.dev.js. ([@nmenglund](https://github.com/nmenglund))
  - [#3576](https://github.com/facebook/create-react-app/pull/3576) Updates comment to reflect codebase. ([@rahulcs](https://github.com/rahulcs))
  - [#3510](https://github.com/facebook/create-react-app/pull/3510) Update User Guide with deploying to GitHub User pages. ([@aaronlna](https://github.com/aaronlna))
  - [#3503](https://github.com/facebook/create-react-app/pull/3503) Update Prettier editor integration link. ([@gaving](https://github.com/gaving))
  - [#3453](https://github.com/facebook/create-react-app/pull/3453) Fix dead links. ([@vannio](https://github.com/vannio))
  - [#2992](https://github.com/facebook/create-react-app/pull/2992) Docs: How to Debug Unit Tests. ([@MattMorgis](https://github.com/MattMorgis))

- Other

  - [#3729](https://github.com/facebook/create-react-app/pull/3729) Update README.md to note Neutrino's support of react components. ([@eliperelman](https://github.com/eliperelman))
  - [#2841](https://github.com/facebook/create-react-app/pull/2841) Documentation to help windows contributors. ([@Dubes](https://github.com/Dubes))
  - [#3489](https://github.com/facebook/create-react-app/pull/3489) Add link to nvm-windows. ([@davidgilbertson](https://github.com/davidgilbertson))

- `eslint-config-react-app`

  - [#3460](https://github.com/facebook/create-react-app/pull/3460) Fix broken link to `href-no-hash` eslint rule. ([@hazolsky](https://github.com/hazolsky))

#### :house: Internal

- Other

  - [#3769](https://github.com/facebook/create-react-app/pull/3769) Enable Yarn check files. ([@Timer](https://github.com/Timer))
  - [#3756](https://github.com/facebook/create-react-app/pull/3756) Clean up changes to npm and yarn registry in E2E tests. ([@viankakrisna](https://github.com/viankakrisna))
  - [#3744](https://github.com/facebook/create-react-app/pull/3744) Use private registry in E2E tests. ([@Timer](https://github.com/Timer))
  - [#3738](https://github.com/facebook/create-react-app/pull/3738) Always use Yarn on CI. ([@gaearon](https://github.com/gaearon))
  - [#2309](https://github.com/facebook/create-react-app/pull/2309) Port `cra.sh` development task to javascript. ([@ianschmitz](https://github.com/ianschmitz))
  - [#3411](https://github.com/facebook/create-react-app/pull/3411) Simplify waiting for app start in E2E tests. ([@xjlim](https://github.com/xjlim))
  - [#3755](https://github.com/facebook/create-react-app/pull/3755) Switch to Yarn Workspaces. ([@gaearon](https://github.com/gaearon))
  - [#3757](https://github.com/facebook/create-react-app/pull/3757) Try updating Flow. ([@gaearon](https://github.com/gaearon))
  - [#3414](https://github.com/facebook/create-react-app/pull/3414) Export `dismissRuntimeErrors` function. ([@skidding](https://github.com/skidding))
  - [#3036](https://github.com/facebook/create-react-app/pull/3036) Cleaning up `printHostingInstructions` a bit. ([@GreenGremlin](https://github.com/GreenGremlin))
  - [#3514](https://github.com/facebook/create-react-app/pull/3514) Fix `FileSizeReporter` for multi build webpack setups. ([@iiska](https://github.com/iiska))
  - [#3362](https://github.com/facebook/create-react-app/pull/3362) Refactor extra watch options regex to `react-dev-utils`. ([@xjlim](https://github.com/xjlim))

#### Committers: 47

- Aaron Lamb ([aaronlna](https://github.com/aaronlna))
- Ade Viankakrisna Fadlil ([viankakrisna](https://github.com/viankakrisna))
- Amadeo Gallardo ([amadeogallardo](https://github.com/amadeogallardo))
- Andy Kenward ([andykenward](https://github.com/andykenward))
- Christian Danielsen ([cdanielsen](https://github.com/cdanielsen))
- Clayton Ray ([iamclaytonray](https://github.com/iamclaytonray))
- Dan Abramov ([gaearon](https://github.com/gaearon))
- Daniel Verejan ([danielverejan](https://github.com/danielverejan))
- Danny Calleri ([dannycalleri](https://github.com/dannycalleri))
- David Boyne ([boyney123](https://github.com/boyney123))
- David Gilbertson ([davidgilbertson](https://github.com/davidgilbertson))
- Eli Perelman ([eliperelman](https://github.com/eliperelman))
- Elie ([elie222](https://github.com/elie222))
- Ernesto García ([gnapse](https://github.com/gnapse))
- Evan You ([yyx990803](https://github.com/yyx990803))
- Gavin Gilmour ([gaving](https://github.com/gaving))
- Ian Schmitz ([ianschmitz](https://github.com/ianschmitz))
- Ian Sutherland ([iansu](https://github.com/iansu))
- JANG SUN HYUK ([wkdtjsgur100](https://github.com/wkdtjsgur100))
- Jeffrey Posnick ([jeffposnick](https://github.com/jeffposnick))
- Joe Haddad ([Timer](https://github.com/Timer))
- Joe Lim ([xjlim](https://github.com/xjlim))
- Jonathan ([GreenGremlin](https://github.com/GreenGremlin))
- Juhamatti Niemelä ([iiska](https://github.com/iiska))
- Mae Capozzi ([maecapozzi](https://github.com/maecapozzi))
- Maksym Dogadailo ([mdogadailo](https://github.com/mdogadailo))
- Mario Nebl ([marionebl](https://github.com/marionebl))
- Matt Morgis ([MattMorgis](https://github.com/MattMorgis))
- Misha Khokhlov ([hazolsky](https://github.com/hazolsky))
- Moos ([moos](https://github.com/moos))
- Nils Magnus Englund ([nmenglund](https://github.com/nmenglund))
- Norris Oduro ([Norris1z](https://github.com/Norris1z))
- Ovidiu Cherecheș ([skidding](https://github.com/skidding))
- Quentin Bahers ([qbahers](https://github.com/qbahers))
- Rafael E. Poveda ([raerpo](https://github.com/raerpo))
- Rahul Chanila ([rahulcs](https://github.com/rahulcs))
- Ryan McCue ([rmccue](https://github.com/rmccue))
- Sascha Dens ([SaschaDens](https://github.com/SaschaDens))
- Siddharth Doshi ([doshisid](https://github.com/doshisid))
- Tao Gómez Gil ([Gua-naiko-che](https://github.com/Gua-naiko-che))
- Tharaka Wijebandara ([tharakawj](https://github.com/tharakawj))
- Trevor Brindle ([tabrindle](https://github.com/tabrindle))
- Ulrik Strid ([ulrikstrid](https://github.com/ulrikstrid))
- Vladimir Tolstikov ([bobrosoft](https://github.com/bobrosoft))
- [Dubes](https://github.com/Dubes)
- [vannio](https://github.com/vannio)
- shrynx ([shrynx](https://github.com/shrynx))

### Migrating from 1.0.17 to 1.1.0

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

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

or

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

## 1.0.17 (November 3, 2017)

#### :nail_care: Enhancement

- `react-scripts`

  - [#3401](https://github.com/facebook/create-react-app/pull/3401) Stop using a deprecated option. ([@gaearon](https://github.com/gaearon))

#### :memo: Documentation

- `react-scripts`

  - [#3399](https://github.com/facebook/create-react-app/pull/3399) Add link to VS Code troubleshooting guide. ([@auchenberg](https://github.com/auchenberg))
  - [#3400](https://github.com/facebook/create-react-app/pull/3400) Update VS Code debug configuration. ([@auchenberg](https://github.com/auchenberg))

#### Committers: 3

- Dan Abramov ([gaearon](https://github.com/gaearon))
- Kenneth Auchenberg ([auchenberg](https://github.com/auchenberg))
- Loren Sands-Ramshaw ([lorensr](https://github.com/lorensr))

### Migrating from 1.0.16 to 1.0.17

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

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

or

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

## 1.0.16 (October 31, 2017) 🎃

#### :bug: Bug Fix

- `react-scripts`

  - [#3374](https://github.com/facebook/create-react-app/pull/3374) Set correct image type and sizes in `manifest.json`. ([@piotr-cz](https://github.com/piotr-cz))

- `react-dev-utils`

  - [#3368](https://github.com/facebook/create-react-app/pull/3368) Fix a crash in development mode in older browsers. ([@felthy](https://github.com/felthy))

#### Committers: 2

- Dan Abramov ([gaearon](https://github.com/gaearon))
- Piotr ([piotr-cz](https://github.com/piotr-cz))

### Migrating from 1.0.15 to 1.0.16

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

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

or

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

## 1.0.15 (October 30, 2017)

#### :bug: Bug Fix

- `react-scripts`

  - [#3287](https://github.com/facebook/create-react-app/pull/3287) Fix favicon sizes value in the project manifest. ([@ryansully](https://github.com/ryansully))

- `react-dev-utils`, `react-scripts`

  - [#3230](https://github.com/facebook/create-react-app/pull/3230) Fix watching for changes in `src/node_modules`. ([@xjlim](https://github.com/xjlim))

#### :nail_care: Enhancement

- `react-scripts`

  - [#3239](https://github.com/facebook/create-react-app/pull/3239) Allow importing `.mjs` files. ([@Timer](https://github.com/Timer))
  - [#3340](https://github.com/facebook/create-react-app/pull/3340) Polyfill `requestAnimationFrame` in test environment. ([@gaearon](https://github.com/gaearon))

- `babel-preset-react-app`, `react-dev-utils`, `react-error-overlay`, `react-scripts`

  - [#3342](https://github.com/facebook/create-react-app/pull/3342) Bump dependencies. ([@gaearon](https://github.com/gaearon))

- `react-dev-utils`, `react-error-overlay`

  - [#3100](https://github.com/facebook/create-react-app/pull/3100) Add click-to-open support for build errors. ([@tharakawj](https://github.com/tharakawj))

- `create-react-app`

  - [#3355](https://github.com/facebook/create-react-app/pull/3355) Add preflight CWD check for npm to detect bad Windows setups. ([@gaearon](https://github.com/gaearon))

#### :memo: Documentation

- User Guide

  - [#2957](https://github.com/facebook/create-react-app/pull/2957) Use `npm-run-all` to build Sass and JS. ([@shime](https://github.com/shime))
  - [#3108](https://github.com/facebook/create-react-app/pull/3108) Update the Service Worker opt-out documentation. ([@captDaylight](https://github.com/captDaylight))
  - [#3286](https://github.com/facebook/create-react-app/pull/3286) Add documentation for Enzyme 3 integration. ([@ryansully](https://github.com/ryansully))
  - [#3328](https://github.com/facebook/create-react-app/pull/3328) Recommend react-snap as an alternative to react-snapshot. ([@aaronshaf](https://github.com/aaronshaf))
  - [#3279](https://github.com/facebook/create-react-app/pull/3279) Add jest coverage configuration docs. ([@mattphillips](https://github.com/mattphillips))
  - [#3303](https://github.com/facebook/create-react-app/pull/3303) Update link to Jest Expect docs. ([@jbranchaud](https://github.com/jbranchaud))
  - [#3289](https://github.com/facebook/create-react-app/pull/3289) Fix dead link to Jest "expect" docs. ([@alexkrolick](https://github.com/alexkrolick))
  - [#3265](https://github.com/facebook/create-react-app/pull/3265) Add external links to deployment services. ([@aericson](https://github.com/aericson))
  - [#3075](https://github.com/facebook/create-react-app/pull/3075) Minor docs change to highlight dev proxy behaviour. ([@davidjb](https://github.com/davidjb))
  - [#3185](https://github.com/facebook/create-react-app/pull/3185) Correct manual proxy documentation. ([@robertpanzer](https://github.com/robertpanzer))

- README

  - [#3227](https://github.com/facebook/create-react-app/pull/3227) Fix package management link in README for issue #3218. ([@nishina555](https://github.com/nishina555))
  - [#3211](https://github.com/facebook/create-react-app/pull/3211) Improve grammar in README. ([@Mohamed3on](https://github.com/Mohamed3on))

#### :house: Internal

- Other

  - [#3345](https://github.com/facebook/create-react-app/pull/3345) Stop using `npm link` in tests. ([@Timer](https://github.com/Timer))

- `react-error-overlay`

  - [#3122](https://github.com/facebook/create-react-app/pull/3122) Fix for add .gitattributes file #3080. ([@ijajmulani](https://github.com/ijajmulani))
  - [#3267](https://github.com/facebook/create-react-app/pull/3267) Use production React version for bundled overlay. ([@Timer](https://github.com/Timer))
  - [#3264](https://github.com/facebook/create-react-app/pull/3264) Add warning when using `react-error-overlay` in production. ([@Timer](https://github.com/Timer))
  - [#3263](https://github.com/facebook/create-react-app/pull/3263) `react-error-overlay` has no dependencies now (it's bundled). ([@Timer](https://github.com/Timer))
  - [#3142](https://github.com/facebook/create-react-app/pull/3142) Make error overlay run in the context of the iframe. ([@tharakawj](https://github.com/tharakawj))

- `react-scripts`

  - [#3150](https://github.com/facebook/create-react-app/pull/3150) Remove an useless negation in `registerServiceWorker.js`. ([@dunglas](https://github.com/dunglas))
  - [#3158](https://github.com/facebook/create-react-app/pull/3158) Remove `output.path` from dev webpack config. ([@nikolas](https://github.com/nikolas))
  - [#3281](https://github.com/facebook/create-react-app/pull/3281) Add a workaround for Uglify incompatibility with Safari 10.0 in the future. ([@satyavh](https://github.com/satyavh))
  - [#3146](https://github.com/facebook/create-react-app/pull/3146) Fix `reason-react` support. ([@lpalmes](https://github.com/lpalmes))
  - [#3236](https://github.com/facebook/create-react-app/pull/3236) Update `style-loader` and disable inclusion of its HMR code in builds. ([@insin](https://github.com/insin))
  - [#3246](https://github.com/facebook/create-react-app/pull/3246) Update `url-loader` to 0.6.2 for mime ReDoS vulnerability. ([@d3viant0ne](https://github.com/d3viant0ne))
  - [#2914](https://github.com/facebook/create-react-app/pull/2914) `<!doctype html>` -> `<!DOCTYPE html>`. ([@Hurtak](https://github.com/Hurtak))

#### Committers: 24

- Aaron Shafovaloff ([aaronshaf](https://github.com/aaronshaf))
- Alex ([alexkrolick](https://github.com/alexkrolick))
- André Ericson ([aericson](https://github.com/aericson))
- Dan Abramov ([gaearon](https://github.com/gaearon))
- David Beitey ([davidjb](https://github.com/davidjb))
- Hrvoje Šimić ([shime](https://github.com/shime))
- IJAJ MULANI ([ijajmulani](https://github.com/ijajmulani))
- Joe Haddad ([Timer](https://github.com/Timer))
- Joe Lim ([xjlim](https://github.com/xjlim))
- Jonny Buchanan ([insin](https://github.com/insin))
- Josh Branchaud ([jbranchaud](https://github.com/jbranchaud))
- Joshua Wiens ([d3viant0ne](https://github.com/d3viant0ne))
- Kévin Dunglas ([dunglas](https://github.com/dunglas))
- Lorenzo Palmes ([lpalmes](https://github.com/lpalmes))
- Matt Phillips ([mattphillips](https://github.com/mattphillips))
- Mohamed Oun ([Mohamed3on](https://github.com/Mohamed3on))
- Nik Nyby ([nikolas](https://github.com/nikolas))
- Petr Huřťák ([Hurtak](https://github.com/Hurtak))
- Robert Panzer ([robertpanzer](https://github.com/robertpanzer))
- Ryan Sullivan ([ryansully](https://github.com/ryansully))
- Satya van Heummen ([satyavh](https://github.com/satyavh))
- Tharaka Wijebandara ([tharakawj](https://github.com/tharakawj))
- Toshiharu Nishina ([nishina555](https://github.com/nishina555))
- [captDaylight](https://github.com/captDaylight)

### Migrating from 1.0.14 to 1.0.15

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

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

or

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

## 1.0.14 (September 26, 2017)

#### :bug: Bug Fix

- `react-dev-utils`

  - [#3098](https://github.com/facebook/create-react-app/pull/3098) Always reload the page on next compile after a runtime error. ([@Timer](https://github.com/Timer))

- `react-error-overlay`

  - [#3079](https://github.com/facebook/create-react-app/pull/3079) Fix code context on Windows. ([@Timer](https://github.com/Timer))

#### :nail_care: Enhancement

- `react-dev-utils`

  - [#3077](https://github.com/facebook/create-react-app/pull/3077) Auto-detect running editor on Linux for error overlay. ([@gulderov](https://github.com/gulderov))

  - [#3131](https://github.com/facebook/create-react-app/pull/3131) Display process pid in already running message. ([@Pajn](https://github.com/Pajn))

#### :memo: Documentation

- Other

  - [#3163](https://github.com/facebook/create-react-app/pull/3163) Add link to active CSS modules discussion. ([@NeekSandhu](https://github.com/NeekSandhu))

- `react-scripts`

  - [#2908](https://github.com/facebook/create-react-app/pull/2908) Note that class fields have progressed to stage 3. ([@rickbeerendonk](https://github.com/rickbeerendonk))

  - [#3160](https://github.com/facebook/create-react-app/pull/3160) Update unclear wording in webpack configuration (file loader section). ([@kristiehoward](https://github.com/kristiehoward))

- `eslint-config-react-app`

  - [#3072](https://github.com/facebook/create-react-app/pull/3072) Update eslint versions for install instructions. ([@jdcrensh](https://github.com/jdcrensh))

#### :house: Internal

- `react-scripts`

  - [#3157](https://github.com/facebook/create-react-app/pull/3157) Update `webpack-dev-server` to `2.8.2`. ([@nikolas](https://github.com/nikolas))

  - [#2989](https://github.com/facebook/create-react-app/pull/2989) Update install template to match accessibility guidelines. ([@davidleger95](https://github.com/davidleger95))

- `react-error-overlay`

  - [#3065](https://github.com/facebook/create-react-app/pull/3065) Updated `react-error-overlay` to latest Flow (`0.54.0`). ([@duvet86](https://github.com/duvet86))

  - [#3102](https://github.com/facebook/create-react-app/pull/3102) Clean target directory before compiling overlay. ([@Timer](https://github.com/Timer))

- `create-react-app`, `react-dev-utils`, `react-error-overlay`, `react-scripts`

  - [#3058](https://github.com/facebook/create-react-app/pull/3058) Re-run prettier for all files and pin the version. ([@viankakrisna](https://github.com/viankakrisna))

  - [#3107](https://github.com/facebook/create-react-app/pull/3107) Run CI on `npm@^4`. ([@viankakrisna](https://github.com/viankakrisna))

#### Committers: 12

- Ade Viankakrisna Fadlil ([viankakrisna](https://github.com/viankakrisna))
- David Leger ([davidleger95](https://github.com/davidleger95))
- Joe Haddad ([Timer](https://github.com/Timer))
- Jon Crenshaw ([jdcrensh](https://github.com/jdcrensh))
- Kristie Howard ([kristiehoward](https://github.com/kristiehoward))
- Luca ([duvet86](https://github.com/duvet86))
- Neek Sandhu ([NeekSandhu](https://github.com/NeekSandhu))
- Nik Nyby ([nikolas](https://github.com/nikolas))
- Rasmus Eneman ([Pajn](https://github.com/Pajn))
- Rick Beerendonk ([rickbeerendonk](https://github.com/rickbeerendonk))
- Sophie Alpert ([sophiebits](https://github.com/sophiebits))
- [gulderov](https://github.com/gulderov)

### Migrating from 1.0.13 to 1.0.14

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

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

or

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

## 1.0.13 (September 2, 2017)

#### :bug: Bug Fix

- `react-error-overlay`

  - [#3051](https://github.com/facebook/create-react-app/pull/3051) Fix case-sensitivity issue with upgrading the package version. ([@tharakawj](https://github.com/tharakawj))

- `react-dev-utils`

  - [#3049](https://github.com/facebook/create-react-app/pull/3049) Print filesize difference for chunks. ([@esturcke](https://github.com/esturcke))

- `react-scripts`

  - [#3046](https://github.com/facebook/create-react-app/pull/3046) Fix crash in development mode on IE11. ([@tharakawj](https://github.com/tharakawj))

#### :nail_care: Enhancement

- `react-scripts`

  - [#3033](https://github.com/facebook/create-react-app/pull/3033) Add an empty mock for `child_process` to let some libraries compile. ([@McFlurriez](https://github.com/McFlurriez))

#### :house: Internal

- `react-dev-utils`, `react-error-overlay`

  - [#3028](https://github.com/facebook/create-react-app/pull/3028) Make error overlay filename configurable. ([@jaredpalmer](https://github.com/jaredpalmer))

#### Committers: 4

- Anthony ([McFlurriez](https://github.com/McFlurriez))
- Erik J. Sturcke ([esturcke](https://github.com/esturcke))
- Jared Palmer ([jaredpalmer](https://github.com/jaredpalmer))
- Tharaka Wijebandara ([tharakawj](https://github.com/tharakawj))

### Migrating from 1.0.12 to 1.0.13

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

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

or

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

## 1.0.12 (August 28, 2017)

#### :bug: Bug Fix

- `react-error-overlay`

  - [#3012](https://github.com/facebook/create-react-app/pull/3012) Fix module function name in error overlay. ([@gaearon](https://github.com/gaearon))

- `react-dev-utils`
  - [#2938](https://github.com/facebook/create-react-app/pull/2938) Remove superfluous lodash usage. ([@Timer](https://github.com/Timer))

#### :nail_care: Enhancement

- `react-scripts`

  - [#2917](https://github.com/facebook/create-react-app/pull/2917) Optimize the size of default favicon. ([@sylvainbaronnet](https://github.com/sylvainbaronnet))

#### :memo: Documentation

- `react-scripts`

  - [#2986](https://github.com/facebook/create-react-app/pull/2986) Docs: debugging in WebStorm. ([@prigara](https://github.com/prigara))
  - [#2948](https://github.com/facebook/create-react-app/pull/2948) Remove Modulus from user guide. ([@Zertz](https://github.com/Zertz))
  - [#2927](https://github.com/facebook/create-react-app/pull/2927) Update README.md. ([@tbassetto](https://github.com/tbassetto))

- `react-dev-utils`

  - [#2942](https://github.com/facebook/create-react-app/pull/2942) Fix docs for `printFileSizesAfterBuild`. ([@Kerumen](https://github.com/Kerumen))

#### :house: Internal

- `react-error-overlay`, `react-scripts`

  - [#2991](https://github.com/facebook/create-react-app/pull/2991) Update `babel-runtime` dependency ([@christophehurpeau](https://github.com/christophehurpeau))

- `react-dev-utils`, `react-error-overlay`, `react-scripts`

  - [#2515](https://github.com/facebook/create-react-app/pull/2515) Convert `react-error-overlay` to React ([@tharakawj](https://github.com/tharakawj))

#### Committers: 9

- Christophe Hurpeau ([christophehurpeau](https://github.com/christophehurpeau))
- Dan Abramov ([gaearon](https://github.com/gaearon))
- Ekaterina Prigara ([prigara](https://github.com/prigara))
- Joe Haddad ([Timer](https://github.com/Timer))
- Pier-Luc Gendreau ([Zertz](https://github.com/Zertz))
- Sylvain Baronnet ([sylvainbaronnet](https://github.com/sylvainbaronnet))
- Tharaka Wijebandara ([tharakawj](https://github.com/tharakawj))
- Thomas Bassetto ([tbassetto](https://github.com/tbassetto))
- Yann Pringault ([Kerumen](https://github.com/Kerumen))

### Migrating from 1.0.11 to 1.0.12

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

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

or

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

**Note:** there’s a [known issue](https://github.com/facebook/create-react-app/issues/3041) that might cause the project to not compile after upgrading. In this case, migrate straight to `1.0.13` which doesn’t have this issue.

## 1.0.11 (August 9, 2017)

#### :bug: Bug Fix

- `create-react-app`

  - [#2884](https://github.com/facebook/create-react-app/pull/2884) Improve offline heuristic for proxied environments. ([@bsyk](https://github.com/bsyk))

    When a Yarn proxy is set, we will check its connectivity if we cannot reach Yarn's registry. This is often the case when DNS lookups must be made through the proxy.

  - [#2853](https://github.com/facebook/create-react-app/pull/2853) Allow use of scoped packages with a pinned version. ([@wileybenet](https://github.com/wileybenet))

- `react-dev-utils`

  - [#2796](https://github.com/facebook/create-react-app/pull/2796) Properly escape HTML tags in error overlay. ([@ccloli](https://github.com/ccloli))

    Elements printed in their entirety would sometimes render as HTML. This should no longer happen and should properly render as text.

- `react-dev-utils`, `react-scripts`
  - [#2834](https://github.com/facebook/create-react-app/pull/2834) Make `formatWebpackMessages` return all messages ([@onigoetz](https://github.com/onigoetz))
- `react-scripts`
  - [#2806](https://github.com/facebook/create-react-app/pull/2806) Fix SockJS version compatibility. ([@christianbundy](https://github.com/christianbundy))
  - [#2738](https://github.com/facebook/create-react-app/pull/2738) Fix Jest `node` file resolution. ([@mostafah](https://github.com/mostafah))

#### :nail_care: Enhancement

- `react-scripts`

  - [#2818](https://github.com/facebook/create-react-app/pull/2818) Allow sourcemaps to be disabled. ([@viankakrisna](https://github.com/viankakrisna))

    As applications grow more complex, it is possible webpack may run out of memory while generating source maps. They may now be disabled by setting `GENERATE_SOURCEMAP=false`.

  - [#2913](https://github.com/facebook/create-react-app/pull/2913) Allow flags to be passed to node when running `react-scripts`. ([@koistya](https://github.com/koistya))
  - [#2574](https://github.com/facebook/create-react-app/pull/2574) Upgrade to `webpack@3`. ([@themre](https://github.com/themre))
  - [#2747](https://github.com/facebook/create-react-app/pull/2747) Simplify webpack configuration using `Rule.oneOf`. ([@Furizaa](https://github.com/Furizaa))

- `react-dev-utils`, `react-scripts`
  - [#2468](https://github.com/facebook/create-react-app/pull/2468) Allow importing `package.json`. ([@iamdoron](https://github.com/iamdoron))
  - [#2650](https://github.com/facebook/create-react-app/pull/2650) Make UglifyJS error friendlier. ([@viankakrisna](https://github.com/viankakrisna))
- `create-react-app`
  - [#2785](https://github.com/facebook/create-react-app/pull/2785) Change error wording and list conflicting files when initializing app. ([@OwenFlood](https://github.com/OwenFlood))
- `react-dev-utils`
  - [#2761](https://github.com/facebook/create-react-app/pull/2761) Don't prompt to install serve if already installed. ([@OwenFlood](https://github.com/OwenFlood))
  - [#2754](https://github.com/facebook/create-react-app/pull/2754) Auto-detect JetBrains IDEs. ([@danrr](https://github.com/danrr))
  - [#2740](https://github.com/facebook/create-react-app/pull/2740) Support PyCharm in `launchEditor`. ([@danrr](https://github.com/danrr))
  - [#2723](https://github.com/facebook/create-react-app/pull/2723) Reorder vim arguments in `launchEditor` so `--remote` works. ([@trygveaa](https://github.com/trygveaa))
- `eslint-config-react-app`, `react-scripts`
  - [#2735](https://github.com/facebook/create-react-app/pull/2735) Upgrade to `eslint@4`. ([@trungdq88](https://github.com/trungdq88))
- `eslint-config-react-app`
  - [#2701](https://github.com/facebook/create-react-app/pull/2701) Set `allowTaggedTemplates` to true (eslint). ([@denkristoffer](https://github.com/denkristoffer))

#### :memo: Documentation

- Other
  - [#2728](https://github.com/facebook/create-react-app/pull/2728) Add Electrode to alternatives. ([@animesh10](https://github.com/animesh10))
  - [#2788](https://github.com/facebook/create-react-app/pull/2788) Update link for motion. ([@viankakrisna](https://github.com/viankakrisna))
  - [#2697](https://github.com/facebook/create-react-app/pull/2697) Fix env list ordering. ([@alexeyraspopov](https://github.com/alexeyraspopov))
- `react-dev-utils`
  - [#2798](https://github.com/facebook/create-react-app/pull/2798) Update note about `webpackHotDevClient` support. ([@ForbesLindesay](https://github.com/ForbesLindesay))
- `react-scripts`
  - [#2822](https://github.com/facebook/create-react-app/pull/2822) Add explicit "Opting Out of Caching" header. ([@gaearon](https://github.com/gaearon))
  - [#2725](https://github.com/facebook/create-react-app/pull/2725) Fixed typo. ([@zeel](https://github.com/zeel))
  - [#2668](https://github.com/facebook/create-react-app/pull/2668) Document `basename` feature in `react-router`. ([@viankakrisna](https://github.com/viankakrisna))
  - [#2719](https://github.com/facebook/create-react-app/pull/2719) Remove Windows note for `source-map-explorer`. ([@hodanny](https://github.com/hodanny))
- `babel-preset-react-app`
  - [#2732](https://github.com/facebook/create-react-app/pull/2732) Update link to issue blocking JSX hoisting. ([@ForbesLindesay](https://github.com/ForbesLindesay))

#### :house: Internal

- `create-react-app`, `eslint-config-react-app`, `react-dev-utils`, `react-error-overlay`, `react-scripts`
  - [#2923](https://github.com/facebook/create-react-app/pull/2923) Update deps. ([@Timer](https://github.com/Timer))
- `eslint-config-react-app`
  - [#2718](https://github.com/facebook/create-react-app/pull/2718) Re-enable flowtype warning. ([@oskarkook](https://github.com/oskarkook))
- Other
  - [#2700](https://github.com/facebook/create-react-app/pull/2700) Unstage `yarn.lock` pre-commit. ([@jdcrensh](https://github.com/jdcrensh))
- `react-scripts`
  - [#2873](https://github.com/facebook/create-react-app/pull/2873) Use template strings. ([@monkindey](https://github.com/monkindey))

#### Committers: 26

- 864907600cc ([ccloli](https://github.com/ccloli))
- Ade Viankakrisna Fadlil ([viankakrisna](https://github.com/viankakrisna))
- Alexey Raspopov ([alexeyraspopov](https://github.com/alexeyraspopov))
- Andreas Hoffmann ([Furizaa](https://github.com/Furizaa))
- Animesh Dutta ([animesh10](https://github.com/animesh10))
- Ben Sykes ([bsyk](https://github.com/bsyk))
- Christian Bundy ([christianbundy](https://github.com/christianbundy))
- Dan Abramov ([gaearon](https://github.com/gaearon))
- Dan Ristea ([danrr](https://github.com/danrr))
- Danny Ho ([hodanny](https://github.com/hodanny))
- Forbes Lindesay ([ForbesLindesay](https://github.com/ForbesLindesay))
- Joe Haddad ([Timer](https://github.com/Timer))
- Jon Crenshaw ([jdcrensh](https://github.com/jdcrensh))
- Kiho · Cham ([monkindey](https://github.com/monkindey))
- Konstantin Tarkus ([koistya](https://github.com/koistya))
- Kristoffer ([denkristoffer](https://github.com/denkristoffer))
- Mostafa Hajizadeh ([mostafah](https://github.com/mostafah))
- Oskar Köök ([oskarkook](https://github.com/oskarkook))
- Owen Flood ([OwenFlood](https://github.com/OwenFlood))
- Stéphane Goetz ([onigoetz](https://github.com/onigoetz))
- Trygve Aaberge ([trygveaa](https://github.com/trygveaa))
- Wiley Bennett ([wileybenet](https://github.com/wileybenet))
- [iamdoron](https://github.com/iamdoron)
- [themre](https://github.com/themre)
- zeel ([zeel](https://github.com/zeel))
- Đinh Quang Trung ([trungdq88](https://github.com/trungdq88))

### Migrating from 1.0.10 to 1.0.11

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

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

or

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

## 1.0.10 (June 29, 2017)

#### :bug: Bug Fix

- `react-dev-utils`

  - [#2692](https://github.com/facebook/create-react-app/pull/2692) Fix IE11 crash in development. ([@pdhoopr](https://github.com/pdhoopr))

- `create-react-app`
  - [#2683](https://github.com/facebook/create-react-app/pull/2683) Fix a typo. ([@BenBrostoff](https://github.com/BenBrostoff))

#### :memo: Documentation

- README

  - [#2402](https://github.com/facebook/create-react-app/pull/2402) Added `gluestick` to the alternatives section. ([@JoeCortopassi](https://github.com/JoeCortopassi))

#### Committers: 5

- Ben Brostoff ([BenBrostoff](https://github.com/BenBrostoff))
- Forbes Lindesay ([ForbesLindesay](https://github.com/ForbesLindesay))
- Joe Haddad ([Timer](https://github.com/Timer))
- Patrick Hooper ([pdhoopr](https://github.com/pdhoopr))
- [JoeCortopassi](https://github.com/JoeCortopassi)

### Migrating from 1.0.9 to 1.0.10

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

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

or

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

## 1.0.9 (June 29, 2017)

#### :bug: Bug Fix

- `react-scripts`

  - [#2680](https://github.com/facebook/create-react-app/pull/2680) Fix external CSS imports. ([@gaearon](https://github.com/gaearon))

#### :memo: Documentation

- `react-scripts`

  - [#2679](https://github.com/facebook/create-react-app/pull/2679) Fix minor typo. ([@dbanck](https://github.com/dbanck))
  - [#2666](https://github.com/facebook/create-react-app/pull/2666) Add more info about Apache client side routing. ([@viankakrisna](https://github.com/viankakrisna))
  - [#2671](https://github.com/facebook/create-react-app/pull/2671) Add JSON and CSS to Prettier instructions. ([@jbovenschen](https://github.com/jbovenschen))

#### :house: Internal

- Other

  - [#2673](https://github.com/facebook/create-react-app/pull/2673) Bootstrap with Yarn. ([@Timer](https://github.com/Timer))
  - [#2659](https://github.com/facebook/create-react-app/pull/2659) Test Node 8 on Travis. ([@gaearon](https://github.com/gaearon))

#### Committers: 5

- Ade Viankakrisna Fadlil ([viankakrisna](https://github.com/viankakrisna))
- Dan Abramov ([gaearon](https://github.com/gaearon))
- Daniel Banck ([dbanck](https://github.com/dbanck))
- Jaco Bovenschen ([jbovenschen](https://github.com/jbovenschen))
- Joe Haddad ([Timer](https://github.com/Timer))

### Migrating from 1.0.8 to 1.0.9

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

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

or

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

## 1.0.8 (June 28, 2017)

#### :bug: Bug Fix

- `react-scripts`

  - [#2550](https://github.com/facebook/create-react-app/pull/2550) Fix Node 8 compatibility. ([@josephfrazier](https://github.com/josephfrazier))
  - [#2610](https://github.com/facebook/create-react-app/pull/2610) Fix sourcemap directory organization on Windows. ([@plusCubed](https://github.com/plusCubed))
  - [#2596](https://github.com/facebook/create-react-app/pull/2596) Fix an issue with minifying emojis. ([@viankakrisna](https://github.com/viankakrisna))
  - [#2501](https://github.com/facebook/create-react-app/pull/2501) Fix incorrect check if `CI` variable is set to true. ([@varnav](https://github.com/varnav))
  - [#2432](https://github.com/facebook/create-react-app/pull/2432) In new projects, don't register service worker for projects using `PUBLIC_URL` for CDN. ([@jeffposnick](https://github.com/jeffposnick))
  - [#2470](https://github.com/facebook/create-react-app/pull/2470) In new projects, prioritize `index.css` over `App.css`. ([@bryankang](https://github.com/bryankang))

- `react-dev-utils`

  - [#2405](https://github.com/facebook/create-react-app/pull/2405) Fix detection of parent directory in `ModuleScopePlugin`. ([@diligiant](https://github.com/diligiant))
  - [#2562](https://github.com/facebook/create-react-app/pull/2562) Fix eject command output. ([@paweljedrzejczyk](https://github.com/paweljedrzejczyk))

#### :nail_care: Enhancement

- `react-scripts`

  - [#2648](https://github.com/facebook/create-react-app/pull/2648) Warn about large bundle sizes. ([@gaearon](https://github.com/gaearon))
  - [#2511](https://github.com/facebook/create-react-app/pull/2511) Support `.web.js` extension for React Native Web. ([@mini-eggs](https://github.com/mini-eggs))
  - [#2645](https://github.com/facebook/create-react-app/pull/2645) Hide confusing "Skipping static resource" message. ([@gaearon](https://github.com/gaearon))
  - [#2389](https://github.com/facebook/create-react-app/pull/2389) Silence unnecessary warning from Babel. ([@gaearon](https://github.com/gaearon))
  - [#2429](https://github.com/facebook/create-react-app/pull/2429) Update `sw-precache-webpack-plugin` to lastest version. ([@goldhand](https://github.com/goldhand))
  - [#2600](https://github.com/facebook/create-react-app/pull/2600) Add empty mock for `dgram` Node module. ([@micopiira](https://github.com/micopiira))
  - [#2458](https://github.com/facebook/create-react-app/pull/2458) Add names to module factories in development. ([@Zaccc123](https://github.com/Zaccc123))
  - [#2551](https://github.com/facebook/create-react-app/pull/2551) In new projects, unregister service worker and force reload if `service-worker.js` is not found. ([@ro-savage](https://github.com/ro-savage))

- `babel-preset-react-app`, `react-dev-utils`, `react-scripts`

  - [#2658](https://github.com/facebook/create-react-app/pull/2658) Bump dependencies. ([@gaearon](https://github.com/gaearon))

- `create-react-app`, `react-scripts`

  - [#2657](https://github.com/facebook/create-react-app/pull/2657) Put `react-scripts` in `dependencies`, not `devDependencies`. ([@gaearon](https://github.com/gaearon))
  - [#2635](https://github.com/facebook/create-react-app/pull/2635) Silence unhelpful npm warnings. ([@gaearon](https://github.com/gaearon))

- `react-dev-utils`

  - [#2637](https://github.com/facebook/create-react-app/pull/2637) Auto-detect Brackets editor from error overlay. ([@petetnt](https://github.com/petetnt))
  - [#2552](https://github.com/facebook/create-react-app/pull/2552) Auto-detect running editor on Windows for error overlay. ([@levrik](https://github.com/levrik))
  - [#2622](https://github.com/facebook/create-react-app/pull/2622) Support opening PhpStorm for error overlay. ([@miraage](https://github.com/miraage))
  - [#2414](https://github.com/facebook/create-react-app/pull/2414) Support opening WebStorm 2017+ from error overlay. ([@wirmar](https://github.com/wirmar))
  - [#2518](https://github.com/facebook/create-react-app/pull/2518) Warn when trying to run on port below 1024 without admin permissions under Linux/macOS. ([@levrik](https://github.com/levrik))
  - [#2385](https://github.com/facebook/create-react-app/pull/2385) Suggest just `yarn build` in output. ([@gaearon](https://github.com/gaearon))

- `create-react-app`

  - [#1945](https://github.com/facebook/create-react-app/pull/1945) Fix grammar in CLI output. ([@ColinEberhardt](https://github.com/ColinEberhardt))

#### :memo: Documentation

- User Guide

  - [#2662](https://github.com/facebook/create-react-app/pull/2662) Local testing docker links. ([@EnoahNetzach](https://github.com/EnoahNetzach))
  - [#2660](https://github.com/facebook/create-react-app/pull/2660) Minor code style edits to user guide. ([@gaearon](https://github.com/gaearon))
  - [#2656](https://github.com/facebook/create-react-app/pull/2656) Don't ask to install webpack for using Styleguidist. ([@gaearon](https://github.com/gaearon))
  - [#1641](https://github.com/facebook/create-react-app/pull/1641) Add instructions to use `source-map-explorer`. ([@gr33nfury](https://github.com/gr33nfury))
  - [#2044](https://github.com/facebook/create-react-app/pull/2044) Add React Styleguidist. ([@sapegin](https://github.com/sapegin))
  - [#2006](https://github.com/facebook/create-react-app/pull/2006) Added instruction on how to install Prettier. ([@MrHus](https://github.com/MrHus))
  - [#1813](https://github.com/facebook/create-react-app/pull/1813) Fix grammar. ([@iheng](https://github.com/iheng))
  - [#2060](https://github.com/facebook/create-react-app/pull/2060) Add more info about OOM build failiure [docs]. ([@GAumala](https://github.com/GAumala))
  - [#2305](https://github.com/facebook/create-react-app/pull/2305) Update docs with WebSocket proxy information. ([@jamesblight](https://github.com/jamesblight))
  - [#2445](https://github.com/facebook/create-react-app/pull/2445) Document `REACT_EDITOR` environment variable. ([@wirmar](https://github.com/wirmar))
  - [#2362](https://github.com/facebook/create-react-app/pull/2362) Add yarn example under "Installing a Dependency". ([@BrianDGLS](https://github.com/BrianDGLS))
  - [#2423](https://github.com/facebook/create-react-app/pull/2423) Add docs for setting up CircleCI for CRA. ([@knowbody](https://github.com/knowbody))
  - [#2427](https://github.com/facebook/create-react-app/pull/2427) Added link to tutorial on code splitting. ([@jayair](https://github.com/jayair))
  - [#2447](https://github.com/facebook/create-react-app/pull/2447) Fix wrong comment on Proxy guide. ([@hellowin](https://github.com/hellowin))
  - [#2538](https://github.com/facebook/create-react-app/pull/2538) Fix broken link to a tutorial. ([@romanyanke](https://github.com/romanyanke))
  - [#2522](https://github.com/facebook/create-react-app/pull/2522) Flow init to run as command not flag. ([@khanglu](https://github.com/khanglu))
  - [#2521](https://github.com/facebook/create-react-app/pull/2521) Fix broken link to Storybook docs. ([@shilman](https://github.com/shilman))
  - [#2500](https://github.com/facebook/create-react-app/pull/2500) Fix minor typo. ([@AlexxNica](https://github.com/AlexxNica))
  - [#2331](https://github.com/facebook/create-react-app/pull/2331) Re-add storybook && update the documentation and links. ([@ndelangen](https://github.com/ndelangen))
  - [#2454](https://github.com/facebook/create-react-app/pull/2454) Update Travis CI Node versions in User Guide. ([@ryansully](https://github.com/ryansully))
  - [#2420](https://github.com/facebook/create-react-app/pull/2420) Fix typo. ([@ruskakimov](https://github.com/ruskakimov))
  - [#2392](https://github.com/facebook/create-react-app/pull/2392) Update `jest-enzyme` section. ([@luftywiranda13](https://github.com/luftywiranda13))

- README

  - [#2517](https://github.com/facebook/create-react-app/pull/2517) Add Razzle to the alternatives. ([@kireerik](https://github.com/kireerik))
  - [#1931](https://github.com/facebook/create-react-app/pull/1931) Updated README. ([@shaunwallace](https://github.com/shaunwallace))
  - [#2492](https://github.com/facebook/create-react-app/pull/2492) Update webpack links to point to webpack 2. ([@laruiss](https://github.com/laruiss))

#### :house: Internal

- Other

  - [#2465](https://github.com/facebook/create-react-app/pull/2465) Update Prettier to v1. ([@ianschmitz](https://github.com/ianschmitz))
  - [#2489](https://github.com/facebook/create-react-app/pull/2489) chore(templates): Move GitHub templates to hidden .github folder. ([@glennreyes](https://github.com/glennreyes))
  - [#2400](https://github.com/facebook/create-react-app/pull/2400) Added cache clear to e2e scripts. ([@ro-savage](https://github.com/ro-savage))
  - [#2397](https://github.com/facebook/create-react-app/pull/2397) Fix command in e2e-kitchensink.sh cleanup. ([@ro-savage](https://github.com/ro-savage))
  - [#2388](https://github.com/facebook/create-react-app/pull/2388) Fix wrong path expansion in end-to-end test. ([@gaearon](https://github.com/gaearon))
  - [#2387](https://github.com/facebook/create-react-app/pull/2387) Catch "No tests found" during CI. ([@EnoahNetzach](https://github.com/EnoahNetzach))

- `react-scripts`

  - [#2408](https://github.com/facebook/create-react-app/pull/2408) E2E testing enhancements. ([@EnoahNetzach](https://github.com/EnoahNetzach))
  - [#2430](https://github.com/facebook/create-react-app/pull/2430) Remove an unnecessary webpack option. ([@andykenward](https://github.com/andykenward))

- `react-dev-utils`

  - [#2483](https://github.com/facebook/create-react-app/pull/2483) Remove a scoped package dependency. ([@Timer](https://github.com/Timer))

#### Committers: 46

- Ade Viankakrisna Fadlil ([viankakrisna](https://github.com/viankakrisna))
- Alexandre Nicastro ([AlexxNica](https://github.com/AlexxNica))
- Andi N. Dirgantara ([hellowin](https://github.com/hellowin))
- Andy Kenward ([andykenward](https://github.com/andykenward))
- Artem Sapegin ([sapegin](https://github.com/sapegin))
- Ashton ([ashtonsix](https://github.com/ashtonsix))
- Brian Douglas ([BrianDGLS](https://github.com/BrianDGLS))
- Colin Eberhardt ([ColinEberhardt](https://github.com/ColinEberhardt))
- Colin Galindo ([gr33nfury](https://github.com/gr33nfury))
- Dan Abramov ([gaearon](https://github.com/gaearon))
- Daniel Ciao ([plusCubed](https://github.com/plusCubed))
- Erik Engi ([kireerik](https://github.com/kireerik))
- Evan Jones ([mini-eggs](https://github.com/mini-eggs))
- Fabrizio Castellarin ([EnoahNetzach](https://github.com/EnoahNetzach))
- Frédéric Miserey ([diligiant](https://github.com/diligiant))
- Gabriel Aumala ([GAumala](https://github.com/GAumala))
- Glenn Reyes ([glennreyes](https://github.com/glennreyes))
- Heng Li ([iheng](https://github.com/iheng))
- Ian Schmitz ([ianschmitz](https://github.com/ianschmitz))
- James Blight ([jamesblight](https://github.com/jamesblight))
- Jay V ([jayair](https://github.com/jayair))
- Jeffrey Posnick ([jeffposnick](https://github.com/jeffposnick))
- Joe Haddad ([Timer](https://github.com/Timer))
- Joseph Frazier ([josephfrazier](https://github.com/josephfrazier))
- Khang Lu ([khanglu](https://github.com/khanglu))
- Levin Rickert ([levrik](https://github.com/levrik))
- Lufty Wiranda ([luftywiranda13](https://github.com/luftywiranda13))
- Maarten Hus ([MrHus](https://github.com/MrHus))
- Marius Wirtherle ([wirmar](https://github.com/wirmar))
- Mateusz Zatorski ([knowbody](https://github.com/knowbody))
- Michael Shilman ([shilman](https://github.com/shilman))
- Mico Piira ([micopiira](https://github.com/micopiira))
- Mikhail Osher ([miraage](https://github.com/miraage))
- Norbert de Langen ([ndelangen](https://github.com/ndelangen))
- Paweł Jędrzejczyk ([paweljedrzejczyk](https://github.com/paweljedrzejczyk))
- Pete Nykänen ([petetnt](https://github.com/petetnt))
- Ro Savage ([ro-savage](https://github.com/ro-savage))
- Roman ([romanyanke](https://github.com/romanyanke))
- Rustem Kakimov ([ruskakimov](https://github.com/ruskakimov))
- Ryan Sullivan ([ryansully](https://github.com/ryansully))
- Stanislas Ormières ([laruiss](https://github.com/laruiss))
- Will Farley ([goldhand](https://github.com/goldhand))
- Zac Kwan ([Zaccc123](https://github.com/Zaccc123))
- [bryankang](https://github.com/bryankang)
- [varnav](https://github.com/varnav)
- shaun wallace ([shaunwallace](https://github.com/shaunwallace))

### Migrating from 1.0.7 to 1.0.8

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

```sh
npm install --save-dev --save-exact react-scripts@1.0.8
```

or

```sh
yarn add --dev --exact react-scripts@1.0.8
```

**If you previously used `HTTPS=true` environment variable in development**, make sure you aren't affected by a now-fixed vulnerability in webpack by [visiting this page](http://badcert.mike.works/). You can read more about the vulnerability [here](https://medium.com/@mikenorth/webpack-preact-cli-vulnerability-961572624c54).

You may optionally then move `react-scripts` from `devDependencies` to `dependencies` since that’s how we’ll structure newly created projects. It is not necessary though.

If you left the service worker integration enabled and didn’t change how it works, you can replace `src/registerServiceWorker.js` with [this updated version](https://raw.githubusercontent.com/facebook/create-react-app/895c475d3fc218c65dcac9a3ef3f2c0ea746a1ed/packages/react-scripts/template/src/registerServiceWorker.js).

If you haven't changed the default CSS organization, you may want to apply [this fix](https://github.com/facebook/create-react-app/pull/2470/files) that makes `index.css` take precedence over `App.css` in your project.

## 1.0.7 (May 27, 2017)

#### :bug: Bug Fix

- `react-scripts`

  - [#2382](https://github.com/facebook/create-react-app/pull/2382) Consistently set environment variables. ([@gaearon](https://github.com/gaearon))
  - [#2379](https://github.com/facebook/create-react-app/pull/2379) Temporarily disable `comparisons` feature in uglify compression. ([@davidascher](https://github.com/davidascher))

#### :nail_care: Enhancement

- `react-scripts`

  - [#2383](https://github.com/facebook/create-react-app/pull/2383) Update webpack to 2.6.1. ([@gaearon](https://github.com/gaearon))
  - [#2349](https://github.com/facebook/create-react-app/pull/2349) Update webpack to v2.6.0. ([@ingro](https://github.com/ingro))
  - [#2351](https://github.com/facebook/create-react-app/pull/2351) Removed the overriding of `reduce_vars` since webpack v2.6.0 included fix of Uglify. ([@Zaccc123](https://github.com/Zaccc123))

- `react-dev-utils`, `react-scripts`

  - [#2361](https://github.com/facebook/create-react-app/pull/2361) Print file sizes with correct build folder path. ([@fezhengjin](https://github.com/fezhengjin))

#### :memo: Documentation

- `react-scripts`

  - [#2372](https://github.com/facebook/create-react-app/pull/2372) Update README.md for `now` deployments. ([@purplecones](https://github.com/purplecones))
  - [#2350](https://github.com/facebook/create-react-app/pull/2350) Fix broken links. ([@gaearon](https://github.com/gaearon))

#### Committers: 6

- Dan Abramov ([gaearon](https://github.com/gaearon))
- David Ascher ([davidascher](https://github.com/davidascher))
- Emanuele Ingrosso ([ingro](https://github.com/ingro))
- Jin Zheng ([fezhengjin](https://github.com/fezhengjin))
- Mirza Joldic ([purplecones](https://github.com/purplecones))
- Zac Kwan ([Zaccc123](https://github.com/Zaccc123))

### Migrating from 1.0.6 to 1.0.7

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

```sh
npm install --save-dev --save-exact react-scripts@1.0.7
```

or

```sh
yarn add --dev --exact react-scripts@1.0.7
```

## 1.0.6 (May 24, 2017)

#### :bug: Bug Fix

- `eslint-config-react-app`, `react-error-overlay`, `react-scripts`

  - [#2346](https://github.com/facebook/create-react-app/pull/2346) Resolve Flow errors in an ESLint plugin. ([@iainbeeston](https://github.com/iainbeeston))

- `react-dev-utils`

  - [#2332](https://github.com/facebook/create-react-app/pull/2332) Fix proxying issues with backends that don't support IPv6. ([@Timer](https://github.com/Timer))

#### :nail_care: Enhancement

- `react-scripts`

  - [#2347](https://github.com/facebook/create-react-app/pull/2347) Don't precache `/__*` URLs to fix Firebase hosting. ([@ryansully](https://github.com/ryansully))

#### :memo: Documentation

- README

  - [#2334](https://github.com/facebook/create-react-app/pull/2334) Add missing files to the list. ([@jesselpalmer](https://github.com/jesselpalmer))

#### Committers: 4

- Iain Beeston ([iainbeeston](https://github.com/iainbeeston))
- Jesse Palmer ([jesselpalmer](https://github.com/jesselpalmer))
- Joe Haddad ([Timer](https://github.com/Timer))
- Ryan Sullivan ([ryansully](https://github.com/ryansully))

### Migrating from 1.0.5 to 1.0.6

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

```sh
npm install --save-dev --save-exact react-scripts@1.0.6
```

or

```sh
yarn add --dev --exact react-scripts@1.0.6
```

## 1.0.5 (May 22, 2017)

#### :bug: Bug Fix

- `react-dev-utils`, `react-scripts`

  - [#2326](https://github.com/facebook/create-react-app/pull/2326) Files in `public/` folder should not be requested through proxy. ([@gaearon](https://github.com/gaearon))

#### :nail_care: Enhancement

- `react-dev-utils`

  - [#2327](https://github.com/facebook/create-react-app/pull/2327) Limit console warnings to 5 files at most. ([@gaearon](https://github.com/gaearon))

- `eslint-config-react-app`

  - [#2325](https://github.com/facebook/create-react-app/pull/2325) Allow declaring variables before use in a scope above. ([@gaearon](https://github.com/gaearon))

#### :house: Internal

- `react-dev-utils`, `react-scripts`

  - [#2320](https://github.com/facebook/create-react-app/pull/2320) Remove unnecessary dependencies. ([@pmadar](https://github.com/pmadar))

#### Committers: 2

- Dan Abramov ([gaearon](https://github.com/gaearon))
- Pavol Madar ([pmadar](https://github.com/pmadar))

### Migrating from 1.0.4 to 1.0.5

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

```sh
npm install --save-dev --save-exact react-scripts@1.0.5
```

or

```sh
yarn add --dev --exact react-scripts@1.0.5
```

## 1.0.4 (May 22, 2017)

#### :bug: Bug Fix

- `react-error-overlay`
  - Fix a regression in published package.

### Migrating from 1.0.3 to 1.0.4

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

```sh
npm install --save-dev --save-exact react-scripts@1.0.4
```

or

```sh
yarn add --dev --exact react-scripts@1.0.4
```

## 1.0.3 (May 21, 2017)

#### :bug: Bug Fix

- `react-dev-utils`

  - [#2297](https://github.com/facebook/create-react-app/pull/2297) Don’t serve the development version from public IPs by default. ([@Timer](https://github.com/Timer))

- `eslint-config-react-app`

  - [#2311](https://github.com/facebook/create-react-app/pull/2311) Disable `flowtype/require-valid-file-annotation` lint rule due to false positives. ([@Robdel12](https://github.com/Robdel12))

- `react-dev-utils`, `react-error-overlay`

  - [#2301](https://github.com/facebook/create-react-app/pull/2301) Wrap more `console` calls into a check. ([@BrodaNoel](https://github.com/BrodaNoel))

- `react-scripts`
  - [#2314](https://github.com/facebook/create-react-app/pull/2314) Fix a "File not found" false positive. ([@gaearon](https://github.com/gaearon))

#### Committers: 4

- Broda Noel ([BrodaNoel](https://github.com/BrodaNoel))
- Dan Abramov ([gaearon](https://github.com/gaearon))
- Joe Haddad ([Timer](https://github.com/Timer))
- Robert DeLuca ([Robdel12](https://github.com/Robdel12))

### Migrating from 1.0.2 to 1.0.3

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

```sh
npm install --save-dev --save-exact react-scripts@1.0.3
```

or

```sh
yarn add --dev --exact react-scripts@1.0.3
```

## 1.0.2 (May 20, 2017)

#### :bug: Bug Fix

- `react-dev-utils`, `react-scripts`

  - [#2276](https://github.com/facebook/create-react-app/pull/2276) Serve a no-op service worker in development to ensure it doesn't cache the production build even if it was served on the same port. ([@jeffposnick](https://github.com/jeffposnick))

- `react-dev-utils`, `react-error-overlay`

  - [#2290](https://github.com/facebook/create-react-app/pull/2290) Wrap console calls into a check for IE9. ([@gaearon](https://github.com/gaearon))

- `react-dev-utils`

  - [#2282](https://github.com/facebook/create-react-app/pull/2282) Add Windows Subsystem for Linux support to the error overlay. ([@noinkling](https://github.com/noinkling))
  - [#2269](https://github.com/facebook/create-react-app/pull/2269) Fix a missing package dependency. ([@GreenGremlin](https://github.com/GreenGremlin))

#### :nail_care: Enhancement

- `react-scripts`

  - [#2221](https://github.com/facebook/create-react-app/pull/2221) Ejecting should ensure you have clean `git status`. ([@milocosmopolitan](https://github.com/milocosmopolitan))
  - [#2288](https://github.com/facebook/create-react-app/pull/2288) Only enable host check if you use proxy, and add a way to opt out of it. ([@gaearon](https://github.com/gaearon))

#### :house: Internal

- `react-dev-utils`, `react-scripts`

  - [#2283](https://github.com/facebook/create-react-app/pull/2283) Remove unnecessary dependencies(#751). ([@pmadar](https://github.com/pmadar))

#### Committers: 6

- Dan Abramov ([gaearon](https://github.com/gaearon))
- Jeffrey Posnick ([jeffposnick](https://github.com/jeffposnick))
- Jonathan ([GreenGremlin](https://github.com/GreenGremlin))
- Malcolm ([noinkling](https://github.com/noinkling))
- Milo Kang ([milocosmopolitan](https://github.com/milocosmopolitan))
- [pmadar](https://github.com/pmadar)

### Migrating from 1.0.1 to 1.0.2

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

```sh
npm install --save-dev --save-exact react-scripts@1.0.2
```

or

```sh
yarn add --dev --exact react-scripts@1.0.2
```

If you previously had issues with an `Invalid Host Header` error, [follow these new instructions](https://github.com/facebook/create-react-app/blob/main/packages/react-scripts/template/README.md#invalid-host-header-errors-after-configuring-proxy) to fix it.

## 1.0.1 (May 19, 2017)

#### :bug: Bug Fix

- `react-scripts`

  - [#2242](https://github.com/facebook/create-react-app/pull/2242) Fix `NODE_PATH=src` for `npm start` and `npm run build`. ([@ApacheEx](https://github.com/ApacheEx))
  - [#2261](https://github.com/facebook/create-react-app/pull/2261) Fix `NODE_PATH=src` for Jest. ([@gaearon](https://github.com/gaearon))
  - [#2255](https://github.com/facebook/create-react-app/pull/2255) Fix Windows path issue for generated service worker. ([@gaearon](https://github.com/gaearon))
  - [#2262](https://github.com/facebook/create-react-app/pull/2262) Additional fix to service worker config for `"homepage"` field. ([@gaearon](https://github.com/gaearon))
  - [#2250](https://github.com/facebook/create-react-app/pull/2250) Ignore `.env.local` in `test` environment. ([@gaearon](https://github.com/gaearon))
  - [#2246](https://github.com/facebook/create-react-app/pull/2246) Gracefully shut down the development server on signals. ([@gaearon](https://github.com/gaearon))

- `react-dev-utils`

  - [#2229](https://github.com/facebook/create-react-app/pull/2229) Show customized build path for serve instruction. ([@chyipin](https://github.com/chyipin))

- `react-dev-utils`, `react-error-overlay`

  - [#2243](https://github.com/facebook/create-react-app/pull/2243) Add missing package dependency. ([@Timer](https://github.com/Timer))

- `react-error-overlay`
  - [#2238](https://github.com/facebook/create-react-app/pull/2238) Fix a crash when switching errors with arrow keys. ([@Gandem](https://github.com/Gandem))

#### :nail_care: Enhancement

- `eslint-config-react-app`

  - [#2256](https://github.com/facebook/create-react-app/pull/2256) Turn off `operator-assignment` stylistic rule. ([@gaearon](https://github.com/gaearon))

- `react-scripts`
  - [#2224](https://github.com/facebook/create-react-app/pull/2224) Add `<noscript>` to template's `index.html`. ([@viankakrisna](https://github.com/viankakrisna))

#### :memo: Documentation

- `react-scripts`

  - [#2259](https://github.com/facebook/create-react-app/pull/2259) Fix broken links. ([@enguerran](https://github.com/enguerran))
  - [#2258](https://github.com/facebook/create-react-app/pull/2258) Update readme with example of Sass include path. ([@kellyrmilligan](https://github.com/kellyrmilligan))
  - [#2252](https://github.com/facebook/create-react-app/pull/2252) Hide React Storybook from the User Guide while it's incompatible. ([@gaearon](https://github.com/gaearon))
  - [#2247](https://github.com/facebook/create-react-app/pull/2247) Correct docs on which `.env.*` files are supported. ([@AJamesPhillips](https://github.com/AJamesPhillips))

#### :house: Internal

- `react-scripts`

  - [#2264](https://github.com/facebook/create-react-app/pull/2264) Fix a bug for empty `NODE_PATH`. ([@gaearon](https://github.com/gaearon))

#### Committers: 9

- Ade Viankakrisna Fadlil ([viankakrisna](https://github.com/viankakrisna))
- Alexander James Phillips ([AJamesPhillips](https://github.com/AJamesPhillips))
- Dan Abramov ([gaearon](https://github.com/gaearon))
- Enguerran ([enguerran](https://github.com/enguerran))
- Joe Haddad ([Timer](https://github.com/Timer))
- Kelly ([kellyrmilligan](https://github.com/kellyrmilligan))
- Nayef Ghattas ([Gandem](https://github.com/Gandem))
- Oleg Kuzava ([ApacheEx](https://github.com/ApacheEx))
- [chyipin](https://github.com/chyipin)

### Migrating from 1.0.0 to 1.0.1

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

```sh
npm install --save-dev --save-exact react-scripts@1.0.1
```

or

```sh
yarn add --dev --exact react-scripts@1.0.1
```

## 1.0.0 (May 18, 2017)

We’ve been working on this release for the past few months, and there are many big improvements, from migrating to webpack 2 to a brand new runtime error overlay and built-in support for Progressive Web Apps.

So instead of just enumerating them here, we decided to write a blog post about all the new features.<br>
Check it out: **[What’s New in Create React App](https://facebook.github.io/react/blog/2017/05/18/whats-new-in-create-react-app.html)**.

Have you read it? Now let's see how to update your app to the latest version.

### Migrating from 0.9.5 to 1.0.0

First, ensure you are using the latest [Node 6 LTS or newer](https://nodejs.org/en/download/). In 1.0.0, we have dropped support for Node 4 and NPM 2.

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

```sh
npm install --save-dev --save-exact react-scripts@1.0.0
```

You may also optionally update the global command-line utility for bug fixes:

```sh
npm install -g create-react-app
```

#### Ensure application and test files reside in `src/`

We've never supported importing files from outside `src/`, nor have we supported running tests outside of `src/`.<br>
We also never explicitly forbid doing so, which caused confusion when things didn't work like they should.

When running or building your application, you may see a message like so:

```sh
You attempted to import ... which falls outside of the project src/ directory.
```

To remedy this, simply move any files that you `import` within `src/` and update your relative imports accordingly. This enforces that files that `import` each other stay in `src/`, and other folders serve different purposes (e.g. the `public/` folder just gets served from the root).

If you used relative imports outside the project directory as a way to share code with another project, consider using a [monorepo](https://github.com/lerna/lerna) instead, so that other projects are symlinked to your project's `node_modules/`. Then you can import them as a Node modules.

While running `npm test`, you may notice some of your tests are missing. Please move any top-level test directory (i.e. `__test__`, `__spec__`) or files (i.e. `*.test.js`, `*.spec.js`) into `src/`. Conversely, if you have some similarly named files that you _don’t_ want Jest to run, move them outside of `src/`.

#### Import required locales for Moment.js

Moment.js locales are now purposely excluded from the bundle unless explicitly depended on.

Please import the locales you need:

```js
import moment from 'moment';
import 'moment/locale/fr';
import 'moment/locale/es';
```

#### You can no longer import file content

You can no longer import a file and expect to receive its contents as an encoded string.<br>
This behavior was confusing and inconsistent depending on the file size.

Importing files with unknown extensions will now always include them into the build and return a valid URL.

If you'd like to import a file's contents as a string, consider [contributing to #1944](https://github.com/facebook/create-react-app/issues/1944).
For the time being, you must embed assets within an export:

```js
// sample.txt
export default `i want
this data as a string
`;
```

You can then import this as so:

```js
import sampleText from './sample.txt';

// ...
```

#### Confusing window globals can no longer be used without `window` qualifier

Please prefix any global method with `window.`, you may experience this with methods such as `confirm`.

Simply update references from `confirm` to `window.confirm`.

Note that this new lint error will likely uncover legitimate accidental uses of global variables where you meant to define a local variable instead.

#### Why is my import erroring out?

You can no longer use AMD import syntax, nor define an import anywhere other than the top of the file.

This is to reduce confusion around import statements, which do not allow you to evaluate code between them.

#### I see many accessibility warnings

We have enabled a new set of rules to help make applications more accessible, please take time to learn about the errors and fix them.

You can search for every lint rule name in the right column and read its description on the web. The fixes are usually very simple.

#### I see many warnings about PropTypes and createClass

We have enabled the lint warnings about React APIs deprecated in React 15.5.
You can automatically convert your project to fix them by running the [corresponding codemods](https://github.com/reactjs/react-codemod).

#### How do I make my tests work with Jest 20?

Please refer to the [Jest 19](https://facebook.github.io/jest/blog/2017/02/21/jest-19-immersive-watch-mode-test-platform-improvements.html#breaking-changes) and [Jest 20](https://facebook.github.io/jest/blog/2017/05/06/jest-20-delightful-testing-multi-project-runner.html#breaking-changes) breaking changes for migration instructions.

If you use snapshots, you will likely need to update them once because of the change in format.

#### Flexbox 2009 spec is no longer polyfilled

The old, 2009 specification for Flexbox is [deprecated and is 2.3x slower than the latest specification](https://developers.google.com/web/tools/lighthouse/audits/old-flexbox).

We are no longer polyfilling it automatically.

#### I see "Definition for rule 'jsx-a11y/alt-text' was not found (jsx-a11y/alt-text)" in the editor

Follow these steps if you see errors about missing lint rules in the editor.

1. Ensure that in your editor ESLint settings you have "Use Global ESLint" turned off
2. Run `npm install` in your project (or `yarn`)
3. Quit your editor completely (ensure its process doesn't hang around)
4. Start the editor again

If you still have the problem please file an issue.

#### Some of my tests started crashing because of unhandled rejections

Unhandled Promise rejections will now crash tests. You can fix them by explicitly catching the errors you don’t care about.

#### How to turn my app into a [Progressive Web App](https://github.com/facebook/create-react-app/blob/main/packages/react-scripts/template/README.md#making-a-progressive-web-app)?

After the regular update procedure above, add these line to `<head>` in `public/index.html`:

```html
<meta name="theme-color" content="#000000" />
<!--
      manifest.json provides metadata used when your web app is added to the
      homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
    -->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
```

Add `<noscript>` to `<body>` in `public/index.html`:

```html
<noscript> You need to enable JavaScript to run this app. </noscript>
```

Then create a file called `public/manifest.json` that looks like this:

```js
{
  "short_name": "React App",
  "name": "Create React App Sample",
  "icons": [
    {
      "src": "favicon.ico",
      "sizes": "192x192",
      "type": "image/png"
    }
  ],
  "start_url": "./index.html",
  "display": "standalone",
  "theme_color": "#000000",
  "background_color": "#ffffff"
}
```

Finally, create `src/registerServiceWorker.js` with [this template](https://github.com/facebook/create-react-app/blob/bf9eca25f519c73f69cff20ac49ce9500e578fe0/packages/react-scripts/template/src/registerServiceWorker.js), [import it](https://github.com/facebook/create-react-app/blob/bf9eca25f519c73f69cff20ac49ce9500e578fe0/packages/react-scripts/template/src/index.js#L4) from `src/index.js` and [call the function it exports](https://github.com/facebook/create-react-app/blob/bf9eca25f519c73f69cff20ac49ce9500e578fe0/packages/react-scripts/template/src/index.js#L8).

#### Anything missing?

This was a large release, and we might have missed something.

Please [file an issue](https://github.com/facebook/create-react-app/issues/new) and we will try to help.

### Detailed Changelog

**For a readable summary of the changes, [check out our blog post](https://facebook.github.io/react/blog/2017/05/18/whats-new-in-create-react-app.html).**

#### :boom: Breaking Change

- `react-dev-utils`, `react-scripts`
  - [#2189](https://github.com/facebook/create-react-app/pull/2189) Add `ModuleScopePlugin` to ensure files reside in `src/`. ([@Timer](https://github.com/Timer))
- `react-scripts`
  - [#2187](https://github.com/facebook/create-react-app/pull/2187) Ignore Moment.js locales by default. ([@gaearon](https://github.com/gaearon))
  - [#1808](https://github.com/facebook/create-react-app/pull/1808) Only run tests in `src/` (#544). ([@motevets](https://github.com/motevets))
  - [#1771](https://github.com/facebook/create-react-app/pull/1771) Some flexbox bugs are autofixed, and support for 2009 spec is dropped. ([@cr101](https://github.com/cr101))
  - [#1614](https://github.com/facebook/create-react-app/pull/1614) Upgrade to Jest ~~19~~ (now 20). ([@rogeliog](https://github.com/rogeliog))
  - [#1305](https://github.com/facebook/create-react-app/pull/1305) Whitelist files that can be embedded through url-loader. ([@pugnascotia](https://github.com/pugnascotia))
- `eslint-config-react-app`, `react-dev-utils`
  - [#2186](https://github.com/facebook/create-react-app/pull/2186) Tweak lint rules. ([@gaearon](https://github.com/gaearon))
- `eslint-config-react-app`, `react-error-overlay`, `react-scripts`
  - [#2163](https://github.com/facebook/create-react-app/pull/2163) Upgrade `eslint-plugin-jsx-a11y` and activate more rules. ([@AlmeroSteyn](https://github.com/AlmeroSteyn))
- `eslint-config-react-app`, `react-scripts`
  - [#2130](https://github.com/facebook/create-react-app/pull/2130) Confusing global variables are now blacklisted. ([@doshisid](https://github.com/doshisid))

#### :rocket: New Feature

- `react-scripts`
  - [#1728](https://github.com/facebook/create-react-app/pull/1728) Scaffolded applications are now Progressive Web Apps by default. ([@jeffposnick](https://github.com/jeffposnick))
  - [#1344](https://github.com/facebook/create-react-app/pull/1344) Support multiple env configuration files. ([@tuchk4](https://github.com/tuchk4))
  - [#2168](https://github.com/facebook/create-react-app/pull/2168) Enable CSS sourcemaps in production. ([@gaearon](https://github.com/gaearon))
  - [#1830](https://github.com/facebook/create-react-app/pull/1830) Make subset of Jest options overridable. ([@ryansully](https://github.com/ryansully))
- `react-dev-utils`, `react-scripts`
  - [#1101](https://github.com/facebook/create-react-app/pull/1101) Add `react-error-overlay`, our new crash overlay. ([@Timer](https://github.com/Timer))
  - [#1590](https://github.com/facebook/create-react-app/pull/1590) Support specifying a node script as BROWSER environment variable. ([@GAumala](https://github.com/GAumala))
  - [#1790](https://github.com/facebook/create-react-app/pull/1790) Support multiple proxies in development. ([@jamesblight](https://github.com/jamesblight))
- `eslint-config-react-app`, `react-scripts`
  - [#2163](https://github.com/facebook/create-react-app/pull/2163) Upgrade `eslint-plugin-jsx-a11y` and activate more rules. ([@AlmeroSteyn](https://github.com/AlmeroSteyn))

#### :bug: Bug Fix

- `react-scripts`
  - [#2219](https://github.com/facebook/create-react-app/pull/2219) Improve interaction between compile and runtime overlays ([@gaearon](https://github.com/gaearon))
  - [#2200](https://github.com/facebook/create-react-app/pull/2200) Disable Uglify reduce_vars. ([@gaearon](https://github.com/gaearon))
  - [#2166](https://github.com/facebook/create-react-app/pull/2166) Support hoisting `react-scripts` and add `require.resolve()` to loaders. ([@gaearon](https://github.com/gaearon))
  - [#2115](https://github.com/facebook/create-react-app/pull/2115) Do not respect `.eslintignore`. ([@Timer](https://github.com/Timer))
  - [#2063](https://github.com/facebook/create-react-app/pull/2063) Ignore yarn cache directory when searching for tests. ([@jmorrell](https://github.com/jmorrell))
  - [#2050](https://github.com/facebook/create-react-app/pull/2050) Name development chunk names. ([@herrstucki](https://github.com/herrstucki))
  - [#2013](https://github.com/facebook/create-react-app/pull/2013) Minify CSS post-webpack 2. ([@viankakrisna](https://github.com/viankakrisna))
  - [#1839](https://github.com/facebook/create-react-app/pull/1839) Resolve `localhost` when offline (Windows). ([@bunshar](https://github.com/bunshar))
  - [#1301](https://github.com/facebook/create-react-app/pull/1301) Bind to host environment variable. ([@GAumala](https://github.com/GAumala))
  - [#1890](https://github.com/facebook/create-react-app/pull/1890) Ensure proxy url starts with `http://` or `https://`. ([@bunshar](https://github.com/bunshar))
  - [#1861](https://github.com/facebook/create-react-app/pull/1861) Upgrade `detect-port`. ([@Andreyco](https://github.com/Andreyco))
  - [#1821](https://github.com/facebook/create-react-app/pull/1821) Fix default responsive behavior in iOS 9+. ([@GreenGremlin](https://github.com/GreenGremlin))
  - [#1819](https://github.com/facebook/create-react-app/pull/1819) Makes end-to-end testing crash on unhandled rejections. ([@dbismut](https://github.com/dbismut))
  - [#1810](https://github.com/facebook/create-react-app/pull/1810) Fixes a silent crash when ejecting. ([@gaearon](https://github.com/gaearon))
  - [#1727](https://github.com/facebook/create-react-app/pull/1727) Fix ejecting from a scoped fork. ([@gaearon](https://github.com/gaearon))
- `react-dev-utils`
  - [#2076](https://github.com/facebook/create-react-app/pull/2076) `openBrowser` now supports urls with more than one parameter. ([@alisonmonteiro](https://github.com/alisonmonteiro))
  - [#1690](https://github.com/facebook/create-react-app/pull/1690) Fix `openBrowser()` when `BROWSER=open` on macOS. ([@bpierre](https://github.com/bpierre))
  - [#1696](https://github.com/facebook/create-react-app/pull/1696) Fix an edge-case for people with the username `cwd`. ([@chrisdrackett](https://github.com/chrisdrackett))
- `create-react-app`
  - [#1863](https://github.com/facebook/create-react-app/pull/1863) Check internet connectivity with lookup instead of resolve. ([@kdleijer](https://github.com/kdleijer))
  - [#1867](https://github.com/facebook/create-react-app/pull/1867) Show package name in CLI. ([@mkazantsev](https://github.com/mkazantsev))
  - [#1706](https://github.com/facebook/create-react-app/pull/1706) Properly extract package name for installing a tgz of scoped packages. ([@Timer](https://github.com/Timer))
  - [#1695](https://github.com/facebook/create-react-app/pull/1695) Add diagnostic code. ([@tgig](https://github.com/tgig))
  - [#1675](https://github.com/facebook/create-react-app/pull/1675) Fix project cleanup on Windows. ([@johann-sonntagbauer](https://github.com/johann-sonntagbauer))
  - [#1662](https://github.com/facebook/create-react-app/pull/1662) Add project name validation. ([@johann-sonntagbauer](https://github.com/johann-sonntagbauer))
  - [#1669](https://github.com/facebook/create-react-app/pull/1669) Fix react dependency versions during initial install. ([@johann-sonntagbauer](https://github.com/johann-sonntagbauer))

#### :nail_care: Enhancement

- `react-dev-utils`, `react-scripts`
  - [#2202](https://github.com/facebook/create-react-app/pull/2202) Refactor and improve build output. ([@gaearon](https://github.com/gaearon))
  - [#2152](https://github.com/facebook/create-react-app/pull/2152) Tweak error and warning output. ([@gaearon](https://github.com/gaearon))
  - [#1772](https://github.com/facebook/create-react-app/pull/1772) Replace prompt function Inquirer.js. (#1767). ([@iansu](https://github.com/iansu))
  - [#1726](https://github.com/facebook/create-react-app/pull/1726) Extract generic build functions to react-dev-utils. ([@viankakrisna](https://github.com/viankakrisna))
- `react-dev-utils`, `react-error-overlay`
  - [#2201](https://github.com/facebook/create-react-app/pull/2201) Tweak error overlay styles. ([@bvaughn](https://github.com/bvaughn))
- `react-scripts`
  - [#2187](https://github.com/facebook/create-react-app/pull/2187) Ignore Moment.js locales by default. ([@gaearon](https://github.com/gaearon))
  - [#1771](https://github.com/facebook/create-react-app/pull/1771) Adding plugin postcss-flexbugs-fixes and flexbox: 'no-2009' to Autoprefixer. ([@cr101](https://github.com/cr101))
  - [#1614](https://github.com/facebook/create-react-app/pull/1614) Upgrade to Jest ~~19~~ (now 20). ([@rogeliog](https://github.com/rogeliog))
  - [#1993](https://github.com/facebook/create-react-app/pull/1993) Removed redundant UglifyJS options. ([@marcofugaro](https://github.com/marcofugaro))
  - [#1800](https://github.com/facebook/create-react-app/pull/1800) Suggest `yarn build` instead of `yarn run build`. ([@geoffdavis92](https://github.com/geoffdavis92))
  - [#1760](https://github.com/facebook/create-react-app/pull/1760) Suggest `serve` for running in production. ([@leo](https://github.com/leo))
  - [#1747](https://github.com/facebook/create-react-app/pull/1747) Display `yarn` instead of `yarnpkg` when creating a new application. ([@lpalmes](https://github.com/lpalmes))
  - [#1433](https://github.com/facebook/create-react-app/pull/1433) Modularise scripts. ([@djgrant](https://github.com/djgrant))
  - [#1677](https://github.com/facebook/create-react-app/pull/1677) Add `X-FORWARDED` headers for proxy requests. ([@johann-sonntagbauer](https://github.com/johann-sonntagbauer))
- `eslint-config-react-app`, `react-dev-utils`
  - [#2186](https://github.com/facebook/create-react-app/pull/2186) Tweak lint rules. ([@gaearon](https://github.com/gaearon))
- `react-error-overlay`, `react-scripts`
  - [#2171](https://github.com/facebook/create-react-app/pull/2171) Use Jest 20. ([@gaearon](https://github.com/gaearon))
- `babel-preset-react-app`, `eslint-config-react-app`, `react-dev-utils`, `react-error-overlay`, `react-scripts`
  - [#2170](https://github.com/facebook/create-react-app/pull/2170) Bump dependencies. ([@gaearon](https://github.com/gaearon))
- `eslint-config-react-app`
  - [#2064](https://github.com/facebook/create-react-app/pull/2064) Removing a stylistic lint rule. ([@anilreddykatta](https://github.com/anilreddykatta))
  - [#1763](https://github.com/facebook/create-react-app/pull/1763) disable ignoring unused vars prefixed with \_. ([@doshisid](https://github.com/doshisid))
  - [#1989](https://github.com/facebook/create-react-app/pull/1989) Relax label rules (Closes [#1835](https://github.com/facebook/create-react-app/issues/1835)). ([@anilreddykatta](https://github.com/anilreddykatta))
  - [#1773](https://github.com/facebook/create-react-app/pull/1773) Remove 'guard-for-in' lint rule. ([@spicyj](https://github.com/spicyj))
- `eslint-config-react-app`, `react-scripts`
  - [#2130](https://github.com/facebook/create-react-app/pull/2130) Blacklist confusing global variables. ([@doshisid](https://github.com/doshisid))
  - [#1542](https://github.com/facebook/create-react-app/pull/1542) Bump jsx-a11y version. ([@bondz](https://github.com/bondz))
  - [#1705](https://github.com/facebook/create-react-app/pull/1705) Add support for `ignoreRestSiblings` in `no-unused-vars`. ([@chrisdrackett](https://github.com/chrisdrackett))
- `react-dev-utils`
  - [#2125](https://github.com/facebook/create-react-app/pull/2125) Only show the first compilation error. ([@gaearon](https://github.com/gaearon))
  - [#2120](https://github.com/facebook/create-react-app/pull/2120) Omit ESLint warnings when there are ESLint errors. ([@gaearon](https://github.com/gaearon))
  - [#2113](https://github.com/facebook/create-react-app/pull/2113) Prettify errors and warnings for webpack 2. ([@gaearon](https://github.com/gaearon))
  - [#1842](https://github.com/facebook/create-react-app/pull/1842) Modularize and extract crash overlay to iframe. ([@Timer](https://github.com/Timer))
- `create-react-app`
  - [#1811](https://github.com/facebook/create-react-app/pull/1811) Allow creation of apps in empty Mercurial repos. ([@GreenGremlin](https://github.com/GreenGremlin))
- Other
  - [#1402](https://github.com/facebook/create-react-app/pull/1402) Create empty package.json in e2e test (#1401). ([@matoilic](https://github.com/matoilic))

#### :memo: Documentation

- `react-scripts`
  - [#2193](https://github.com/facebook/create-react-app/pull/2193) Fix webpack config typo. ([@Justkant](https://github.com/Justkant))
  - [#2137](https://github.com/facebook/create-react-app/pull/2137) Remove live-editing since isn't accurate. ([@cesarvarela](https://github.com/cesarvarela))
  - [#2114](https://github.com/facebook/create-react-app/pull/2114) Update Sass README. ([@kellyrmilligan](https://github.com/kellyrmilligan))
  - [#2081](https://github.com/facebook/create-react-app/pull/2081) Fixed link for storybook. ([@scottrangerio](https://github.com/scottrangerio))
  - [#2052](https://github.com/facebook/create-react-app/pull/2052) Fix instructions for serving with now. ([@davidascher](https://github.com/davidascher))
  - [#2058](https://github.com/facebook/create-react-app/pull/2058) Clarify `.eslintrc` effects. ([@luftywiranda13](https://github.com/luftywiranda13))
  - [#2054](https://github.com/facebook/create-react-app/pull/2054) Suggest to create `.eslintrc` for IDE lint plugins. ([@gaearon](https://github.com/gaearon))
  - [#2033](https://github.com/facebook/create-react-app/pull/2033) Fix Netlify heading level. ([@benpickles](https://github.com/benpickles))
  - [#1987](https://github.com/facebook/create-react-app/pull/1987) Suggest `node-sass` alternative. ([@michaelwayman](https://github.com/michaelwayman))
  - [#1988](https://github.com/facebook/create-react-app/pull/1988) Update doc server example to work from any directory. ([@isramos](https://github.com/isramos))
  - [#1982](https://github.com/facebook/create-react-app/pull/1982) Update information in User Guide for Enzyme dependency. ([@josephrace](https://github.com/josephrace))
  - [#1911](https://github.com/facebook/create-react-app/pull/1911) Suggest Yarn in HTML template. ([@tmos](https://github.com/tmos))
  - [#1869](https://github.com/facebook/create-react-app/pull/1869) User Guide: Removed blockquote from code section, due to markdown conflict. ([@stochris](https://github.com/stochris))
  - [#1756](https://github.com/facebook/create-react-app/pull/1756) Add Yarn steps for adding flow. ([@zertosh](https://github.com/zertosh))
  - [#1710](https://github.com/facebook/create-react-app/pull/1710) Update now.sh deployment instructions. ([@replaid](https://github.com/replaid))
  - [#1717](https://github.com/facebook/create-react-app/pull/1717) Add docs for apache's client side routing setting. ([@viankakrisna](https://github.com/viankakrisna))
  - [#1698](https://github.com/facebook/create-react-app/pull/1698) Suggest to use `.env` for enabling polling mode. ([@gaearon](https://github.com/gaearon))
  - [#1687](https://github.com/facebook/create-react-app/pull/1687) Fixed missing --recursive flag in first `npm run watch-css` command. ([@mklemme](https://github.com/mklemme))
  - [#1657](https://github.com/facebook/create-react-app/pull/1657) Set Chrome userDataDir to be under .vscode folder. ([@ryansully](https://github.com/ryansully))
- Other
  - [#2135](https://github.com/facebook/create-react-app/pull/2135) Add note about `yarn.lock`. ([@viankakrisna](https://github.com/viankakrisna))
  - [#2040](https://github.com/facebook/create-react-app/pull/2040) Fix typo. ([@tijwelch](https://github.com/tijwelch))
  - [#1991](https://github.com/facebook/create-react-app/pull/1991) Add folder structure docs for new contributors. ([@anilreddykatta](https://github.com/anilreddykatta))
  - [#1962](https://github.com/facebook/create-react-app/pull/1962) Add sku to the list of alternatives. ([@markdalgleish](https://github.com/markdalgleish))
  - [#1799](https://github.com/facebook/create-react-app/pull/1799) Improve phrasing. ([@moniuch](https://github.com/moniuch))
- `babel-preset-react-app`
  - [#1787](https://github.com/facebook/create-react-app/pull/1787) Update side-effect documentation. ([@evenchange4](https://github.com/evenchange4))

#### :house: Internal

- `react-scripts`
  - [#2213](https://github.com/facebook/create-react-app/pull/2213) Use some ES6 syntax. ([@s
Download .txt
gitextract_kz2765w0/

├── .alexignore
├── .alexrc
├── .eslintignore
├── .eslintrc.json
├── .gitattributes
├── .github/
│   ├── CODEOWNERS
│   ├── FUNDING.yml
│   ├── ISSUE_TEMPLATE/
│   │   ├── bug_report.md
│   │   ├── proposal.md
│   │   └── question.md
│   ├── PULL_REQUEST_TEMPLATE.md
│   ├── lock.yml
│   ├── stale.yml
│   └── workflows/
│       ├── build-and-test.yml
│       ├── e2e-base.yml
│       └── lint.yml
├── .gitignore
├── .prettierignore
├── .prettierrc
├── CHANGELOG-0.x.md
├── CHANGELOG-1.x.md
├── CHANGELOG-2.x.md
├── CHANGELOG-3.x.md
├── CHANGELOG-4.x.md
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── SECURITY.md
├── docusaurus/
│   ├── docs/
│   │   ├── adding-a-css-modules-stylesheet.md
│   │   ├── adding-a-router.md
│   │   ├── adding-a-sass-stylesheet.md
│   │   ├── adding-a-stylesheet.md
│   │   ├── adding-bootstrap.md
│   │   ├── adding-css-reset.md
│   │   ├── adding-custom-environment-variables.md
│   │   ├── adding-flow.md
│   │   ├── adding-images-fonts-and-files.md
│   │   ├── adding-relay.md
│   │   ├── adding-typescript.md
│   │   ├── advanced-configuration.md
│   │   ├── alternatives-to-ejecting.md
│   │   ├── analyzing-the-bundle-size.md
│   │   ├── available-scripts.md
│   │   ├── can-i-use-decorators.md
│   │   ├── code-splitting.md
│   │   ├── custom-templates.md
│   │   ├── debugging-tests.md
│   │   ├── deployment.md
│   │   ├── developing-components-in-isolation.md
│   │   ├── documentation-intro.md
│   │   ├── fetching-data-with-ajax-requests.md
│   │   ├── folder-structure.md
│   │   ├── getting-started.md
│   │   ├── importing-a-component.md
│   │   ├── installing-a-dependency.md
│   │   ├── integrating-with-an-api-backend.md
│   │   ├── loading-graphql-files.md
│   │   ├── making-a-progressive-web-app.md
│   │   ├── measuring-performance.md
│   │   ├── post-processing-css.md
│   │   ├── pre-rendering-into-static-html-files.md
│   │   ├── production-build.md
│   │   ├── proxying-api-requests-in-development.md
│   │   ├── running-tests.md
│   │   ├── setting-up-your-editor.md
│   │   ├── supported-browsers-features.md
│   │   ├── title-and-meta-tags.md
│   │   ├── troubleshooting.md
│   │   ├── updating-to-new-releases.md
│   │   ├── using-global-variables.md
│   │   ├── using-https-in-development.md
│   │   └── using-the-public-folder.md
│   └── website/
│       ├── .gitignore
│       ├── README.md
│       ├── docusaurus.config.js
│       ├── package.json
│       ├── sidebars.json
│       ├── src/
│       │   ├── css/
│       │   │   └── custom.css
│       │   └── pages/
│       │       ├── index.js
│       │       └── styles.module.css
│       └── static/
│           └── CNAME
├── lerna.json
├── netlify.toml
├── package.json
├── packages/
│   ├── babel-plugin-named-asset-import/
│   │   ├── LICENSE
│   │   ├── index.js
│   │   ├── index.test.js
│   │   └── package.json
│   ├── babel-preset-react-app/
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── create.js
│   │   ├── dependencies.js
│   │   ├── dev.js
│   │   ├── index.js
│   │   ├── package.json
│   │   ├── prod.js
│   │   ├── test.js
│   │   └── webpack-overrides.js
│   ├── confusing-browser-globals/
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── index.js
│   │   ├── package.json
│   │   └── test.js
│   ├── cra-template/
│   │   ├── README.md
│   │   ├── package.json
│   │   ├── template/
│   │   │   ├── README.md
│   │   │   ├── gitignore
│   │   │   ├── public/
│   │   │   │   ├── index.html
│   │   │   │   ├── manifest.json
│   │   │   │   └── robots.txt
│   │   │   └── src/
│   │   │       ├── App.css
│   │   │       ├── App.js
│   │   │       ├── App.test.js
│   │   │       ├── index.css
│   │   │       ├── index.js
│   │   │       ├── reportWebVitals.js
│   │   │       └── setupTests.js
│   │   └── template.json
│   ├── cra-template-typescript/
│   │   ├── README.md
│   │   ├── package.json
│   │   ├── template/
│   │   │   ├── README.md
│   │   │   ├── gitignore
│   │   │   ├── public/
│   │   │   │   ├── index.html
│   │   │   │   ├── manifest.json
│   │   │   │   └── robots.txt
│   │   │   └── src/
│   │   │       ├── App.css
│   │   │       ├── App.test.tsx
│   │   │       ├── App.tsx
│   │   │       ├── index.css
│   │   │       ├── index.tsx
│   │   │       ├── reportWebVitals.ts
│   │   │       └── setupTests.ts
│   │   └── template.json
│   ├── create-react-app/
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── __tests__/
│   │   │   ├── .eslintrc
│   │   │   └── getTemplateInstallPackage.test.js
│   │   ├── createReactApp.js
│   │   ├── index.js
│   │   └── package.json
│   ├── eslint-config-react-app/
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── base.js
│   │   ├── index.js
│   │   ├── jest.js
│   │   └── package.json
│   ├── react-app-polyfill/
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── ie11.js
│   │   ├── ie9.js
│   │   ├── jsdom.js
│   │   ├── package.json
│   │   └── stable.js
│   ├── react-dev-utils/
│   │   ├── FileSizeReporter.js
│   │   ├── ForkTsCheckerWarningWebpackPlugin.js
│   │   ├── ForkTsCheckerWebpackPlugin.js
│   │   ├── InlineChunkHtmlPlugin.js
│   │   ├── InterpolateHtmlPlugin.js
│   │   ├── LICENSE
│   │   ├── ModuleNotFoundPlugin.js
│   │   ├── ModuleScopePlugin.js
│   │   ├── README.md
│   │   ├── WebpackDevServerUtils.js
│   │   ├── __tests__/
│   │   │   ├── .eslintrc
│   │   │   ├── getCSSModuleLocalIdent.test.js
│   │   │   ├── getPublicUrlOrPath.test.js
│   │   │   └── ignoredFiles.test.js
│   │   ├── browsersHelper.js
│   │   ├── chalk.js
│   │   ├── checkRequiredFiles.js
│   │   ├── clearConsole.js
│   │   ├── crossSpawn.js
│   │   ├── errorOverlayMiddleware.js
│   │   ├── eslintFormatter.js
│   │   ├── evalSourceMapMiddleware.js
│   │   ├── formatWebpackMessages.js
│   │   ├── getCSSModuleLocalIdent.js
│   │   ├── getCacheIdentifier.js
│   │   ├── getProcessForPort.js
│   │   ├── getPublicUrlOrPath.js
│   │   ├── globby.js
│   │   ├── ignoredFiles.js
│   │   ├── immer.js
│   │   ├── launchEditor.js
│   │   ├── launchEditorEndpoint.js
│   │   ├── noopServiceWorkerMiddleware.js
│   │   ├── openBrowser.js
│   │   ├── openChrome.applescript
│   │   ├── package.json
│   │   ├── printBuildError.js
│   │   ├── printHostingInstructions.js
│   │   ├── redirectServedPathMiddleware.js
│   │   ├── refreshOverlayInterop.js
│   │   └── webpackHotDevClient.js
│   ├── react-error-overlay/
│   │   ├── .babelrc
│   │   ├── .flowconfig
│   │   ├── .gitattributes
│   │   ├── .gitignore
│   │   ├── .npmignore
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── build.js
│   │   ├── fixtures/
│   │   │   ├── bundle-default.json
│   │   │   ├── bundle.json
│   │   │   ├── bundle.mjs
│   │   │   ├── bundle2.json
│   │   │   ├── bundle_u.mjs
│   │   │   ├── inline.es6.mjs
│   │   │   ├── inline.mjs
│   │   │   └── junk-inline.mjs
│   │   ├── flow/
│   │   │   └── env.js
│   │   ├── package.json
│   │   ├── src/
│   │   │   ├── __tests__/
│   │   │   │   ├── __snapshots__/
│   │   │   │   │   ├── lines-around.js.snap
│   │   │   │   │   ├── script-lines.js.snap
│   │   │   │   │   ├── stack-frame.js.snap
│   │   │   │   │   └── unmapper.js.snap
│   │   │   │   ├── extract-source-map.js
│   │   │   │   ├── get-source-map.js
│   │   │   │   ├── lines-around.js
│   │   │   │   ├── mapper.js
│   │   │   │   ├── parser/
│   │   │   │   │   ├── __snapshots__/
│   │   │   │   │   │   ├── chrome.js.snap
│   │   │   │   │   │   ├── firefox.js.snap
│   │   │   │   │   │   ├── react.js.snap
│   │   │   │   │   │   └── safari.js.snap
│   │   │   │   │   ├── chrome.js
│   │   │   │   │   ├── firefox.js
│   │   │   │   │   ├── generic.js
│   │   │   │   │   ├── react.js
│   │   │   │   │   └── safari.js
│   │   │   │   ├── script-lines.js
│   │   │   │   ├── setupJest.js
│   │   │   │   ├── stack-frame.js
│   │   │   │   └── unmapper.js
│   │   │   ├── components/
│   │   │   │   ├── CloseButton.js
│   │   │   │   ├── CodeBlock.js
│   │   │   │   ├── Collapsible.js
│   │   │   │   ├── ErrorOverlay.js
│   │   │   │   ├── Footer.js
│   │   │   │   ├── Header.js
│   │   │   │   └── NavigationBar.js
│   │   │   ├── containers/
│   │   │   │   ├── CompileErrorContainer.js
│   │   │   │   ├── RuntimeError.js
│   │   │   │   ├── RuntimeErrorContainer.js
│   │   │   │   ├── StackFrame.js
│   │   │   │   ├── StackFrameCodeBlock.js
│   │   │   │   └── StackTrace.js
│   │   │   ├── effects/
│   │   │   │   ├── proxyConsole.js
│   │   │   │   ├── stackTraceLimit.js
│   │   │   │   ├── unhandledError.js
│   │   │   │   └── unhandledRejection.js
│   │   │   ├── iframeScript.js
│   │   │   ├── index.js
│   │   │   ├── listenToRuntimeErrors.js
│   │   │   ├── styles.js
│   │   │   └── utils/
│   │   │       ├── dom/
│   │   │       │   ├── absolutifyCaret.js
│   │   │       │   └── css.js
│   │   │       ├── generateAnsiHTML.js
│   │   │       ├── getLinesAround.js
│   │   │       ├── getPrettyURL.js
│   │   │       ├── getSourceMap.js
│   │   │       ├── getStackFrames.js
│   │   │       ├── isBultinErrorName.js
│   │   │       ├── isInternalFile.js
│   │   │       ├── mapper.js
│   │   │       ├── parseCompileError.js
│   │   │       ├── parser.js
│   │   │       ├── stack-frame.js
│   │   │       ├── unmapper.js
│   │   │       └── warnings.js
│   │   ├── webpack.config.iframe.js
│   │   └── webpack.config.js
│   └── react-scripts/
│       ├── .npmignore
│       ├── LICENSE
│       ├── README.md
│       ├── bin/
│       │   └── react-scripts.js
│       ├── config/
│       │   ├── env.js
│       │   ├── getHttpsConfig.js
│       │   ├── jest/
│       │   │   ├── babelTransform.js
│       │   │   ├── cssTransform.js
│       │   │   └── fileTransform.js
│       │   ├── modules.js
│       │   ├── paths.js
│       │   ├── webpack/
│       │   │   └── persistentCache/
│       │   │       └── createEnvironmentHash.js
│       │   ├── webpack.config.js
│       │   └── webpackDevServer.config.js
│       ├── fixtures/
│       │   └── kitchensink/
│       │       ├── package.json
│       │       ├── template/
│       │       │   ├── .flowconfig
│       │       │   ├── README.md
│       │       │   ├── gitignore
│       │       │   ├── integration/
│       │       │   │   ├── config.test.js
│       │       │   │   ├── env.test.js
│       │       │   │   ├── initDOM.js
│       │       │   │   ├── syntax.test.js
│       │       │   │   └── webpack.test.js
│       │       │   ├── jest.integration.config.js
│       │       │   ├── jest.transform.js
│       │       │   ├── jsconfig.json
│       │       │   ├── public/
│       │       │   │   └── index.html
│       │       │   └── src/
│       │       │       ├── App.js
│       │       │       ├── absoluteLoad.js
│       │       │       ├── features/
│       │       │       │   ├── config/
│       │       │       │   │   ├── BaseUrl.js
│       │       │       │   │   └── BaseUrl.test.js
│       │       │       │   ├── env/
│       │       │       │   │   ├── ExpandEnvVariables.js
│       │       │       │   │   ├── ExpandEnvVariables.test.js
│       │       │       │   │   ├── FileEnvVariables.js
│       │       │       │   │   ├── FileEnvVariables.test.js
│       │       │       │   │   ├── PublicUrl.js
│       │       │       │   │   ├── PublicUrl.test.js
│       │       │       │   │   ├── ShellEnvVariables.js
│       │       │       │   │   └── ShellEnvVariables.test.js
│       │       │       │   ├── syntax/
│       │       │       │   │   ├── ArrayDestructuring.js
│       │       │       │   │   ├── ArrayDestructuring.test.js
│       │       │       │   │   ├── ArraySpread.js
│       │       │       │   │   ├── ArraySpread.test.js
│       │       │       │   │   ├── AsyncAwait.js
│       │       │       │   │   ├── AsyncAwait.test.js
│       │       │       │   │   ├── ClassProperties.js
│       │       │       │   │   ├── ClassProperties.test.js
│       │       │       │   │   ├── ComputedProperties.js
│       │       │       │   │   ├── ComputedProperties.test.js
│       │       │       │   │   ├── CustomInterpolation.js
│       │       │       │   │   ├── CustomInterpolation.test.js
│       │       │       │   │   ├── DefaultParameters.js
│       │       │       │   │   ├── DefaultParameters.test.js
│       │       │       │   │   ├── DestructuringAndAwait.js
│       │       │       │   │   ├── DestructuringAndAwait.test.js
│       │       │       │   │   ├── Generators.js
│       │       │       │   │   ├── Generators.test.js
│       │       │       │   │   ├── NullishCoalescing.js
│       │       │       │   │   ├── NullishCoalescing.test.js
│       │       │       │   │   ├── ObjectDestructuring.js
│       │       │       │   │   ├── ObjectDestructuring.test.js
│       │       │       │   │   ├── ObjectSpread.js
│       │       │       │   │   ├── ObjectSpread.test.js
│       │       │       │   │   ├── OptionalChaining.js
│       │       │       │   │   ├── OptionalChaining.test.js
│       │       │       │   │   ├── Promises.js
│       │       │       │   │   ├── Promises.test.js
│       │       │       │   │   ├── RestAndDefault.js
│       │       │       │   │   ├── RestAndDefault.test.js
│       │       │       │   │   ├── RestParameters.js
│       │       │       │   │   ├── RestParameters.test.js
│       │       │       │   │   ├── TemplateInterpolation.js
│       │       │       │   │   └── TemplateInterpolation.test.js
│       │       │       │   └── webpack/
│       │       │       │       ├── CssInclusion.js
│       │       │       │       ├── CssInclusion.test.js
│       │       │       │       ├── CssModulesInclusion.js
│       │       │       │       ├── CssModulesInclusion.test.js
│       │       │       │       ├── DynamicImport.js
│       │       │       │       ├── DynamicImport.test.js
│       │       │       │       ├── ImageInclusion.js
│       │       │       │       ├── ImageInclusion.test.js
│       │       │       │       ├── JsonInclusion.js
│       │       │       │       ├── JsonInclusion.test.js
│       │       │       │       ├── LinkedModules.js
│       │       │       │       ├── LinkedModules.test.js
│       │       │       │       ├── NoExtInclusion.js
│       │       │       │       ├── NoExtInclusion.test.js
│       │       │       │       ├── SassInclusion.js
│       │       │       │       ├── SassInclusion.test.js
│       │       │       │       ├── SassModulesInclusion.js
│       │       │       │       ├── SassModulesInclusion.test.js
│       │       │       │       ├── ScssInclusion.js
│       │       │       │       ├── ScssInclusion.test.js
│       │       │       │       ├── ScssModulesInclusion.js
│       │       │       │       ├── ScssModulesInclusion.test.js
│       │       │       │       ├── SvgComponent.js
│       │       │       │       ├── SvgComponent.test.js
│       │       │       │       ├── SvgInCss.js
│       │       │       │       ├── SvgInCss.test.js
│       │       │       │       ├── SvgInclusion.js
│       │       │       │       ├── SvgInclusion.test.js
│       │       │       │       ├── UnknownExtInclusion.js
│       │       │       │       ├── UnknownExtInclusion.test.js
│       │       │       │       └── assets/
│       │       │       │           ├── aFileWithExt.unknown
│       │       │       │           ├── aFileWithoutExt
│       │       │       │           ├── abstract.json
│       │       │       │           ├── index.module.css
│       │       │       │           ├── index.module.sass
│       │       │       │           ├── index.module.scss
│       │       │       │           ├── sass-styles.module.sass
│       │       │       │           ├── sass-styles.sass
│       │       │       │           ├── scss-styles.module.scss
│       │       │       │           ├── scss-styles.scss
│       │       │       │           ├── style.css
│       │       │       │           ├── style.module.css
│       │       │       │           └── svg.css
│       │       │       ├── index.js
│       │       │       └── subfolder/
│       │       │           └── lol.js
│       │       └── template.json
│       ├── lib/
│       │   └── react-app.d.ts
│       ├── package.json
│       ├── scripts/
│       │   ├── build.js
│       │   ├── eject.js
│       │   ├── init.js
│       │   ├── start.js
│       │   ├── test.js
│       │   └── utils/
│       │       ├── createJestConfig.js
│       │       └── verifyTypeScriptSetup.js
│       ├── template/
│       │   └── README.md
│       └── template-typescript/
│           └── README.md
├── tasks/
│   ├── .gitignore
│   ├── cra.js
│   ├── e2e-behavior.sh
│   ├── e2e-installs.sh
│   ├── e2e-kitchensink-eject.sh
│   ├── e2e-kitchensink.sh
│   ├── e2e-old-node.sh
│   ├── e2e-simple.sh
│   ├── local-registry.sh
│   ├── local-test.sh
│   ├── publish.sh
│   ├── screencast-start.js
│   ├── screencast.js
│   ├── screencast.sh
│   └── verdaccio.yaml
└── test/
    ├── README.md
    ├── fixtures/
    │   ├── __shared__/
    │   │   ├── template/
    │   │   │   └── public/
    │   │   │       └── index.html
    │   │   ├── test-setup.js
    │   │   └── util/
    │   │       ├── scripts.js
    │   │       └── setup.js
    │   ├── boostrap-sass/
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   └── src/
    │   │       ├── index.js
    │   │       └── index.sass
    │   ├── builds-with-multiple-runtimes/
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   └── src/
    │   │       └── index.js
    │   ├── global-scss-asset-resolution/
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   └── src/
    │   │       ├── index.js
    │   │       └── index.scss
    │   ├── issue-5176-flow-class-properties/
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   └── src/
    │   │       ├── App.js
    │   │       └── App.test.js
    │   ├── issue-5947-not-typescript/
    │   │   ├── index.test.js
    │   │   └── package.json
    │   ├── jsconfig/
    │   │   ├── index.test.js
    │   │   ├── jsconfig.json
    │   │   ├── package.json
    │   │   └── src/
    │   │       ├── App.js
    │   │       ├── App.test.js
    │   │       ├── absoluteLoad.js
    │   │       └── index.js
    │   ├── mjs-support/
    │   │   ├── __snapshots__/
    │   │   │   └── index.test.js.snap
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   └── src/
    │   │       ├── App.js
    │   │       └── index.js
    │   ├── relative-paths/
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   └── src/
    │   │       ├── index.css
    │   │       └── index.js
    │   ├── typescript/
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   ├── src/
    │   │   │   ├── App.test.ts
    │   │   │   ├── App.ts
    │   │   │   └── absoluteLoad.ts
    │   │   └── tsconfig.json
    │   ├── typescript-advanced/
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   └── src/
    │   │       ├── App.test.ts
    │   │       ├── App.tsx
    │   │       └── index.tsx
    │   ├── typescript-typecheck/
    │   │   ├── index.test.js
    │   │   ├── package.json
    │   │   └── src/
    │   │       ├── App.tsx
    │   │       └── index.tsx
    │   └── webpack-message-formatting/
    │       ├── __snapshots__/
    │       │   └── index.test.js.snap
    │       ├── index.test.js
    │       ├── package.json
    │       └── src/
    │           ├── AppAliasUnknownExport.js
    │           ├── AppBabel.js
    │           ├── AppCss.css
    │           ├── AppCss.js
    │           ├── AppIncorrectCase.js
    │           ├── AppLintError.js
    │           ├── AppLintWarning.js
    │           ├── AppMissingPackage.js
    │           ├── AppNoDefault.js
    │           ├── AppOutOfScopeImport.js
    │           ├── AppSass.js
    │           ├── AppSass.scss
    │           ├── AppUnknownExport.js
    │           ├── AppUnknownFile.js
    │           ├── Export5.js
    │           ├── ExportNoDefault.js
    │           ├── FooExport.js
    │           └── index.js
    ├── integration/
    │   └── create-react-app/
    │       └── index.test.js
    └── jest.config.js
Download .txt
SYMBOL INDEX (1688 symbols across 114 files)

FILE: docusaurus/website/src/pages/index.js
  function Home (line 39) | function Home() {

FILE: packages/babel-plugin-named-asset-import/index.js
  function namedAssetImportPlugin (line 5) | function namedAssetImportPlugin({ types: t }) {

FILE: packages/babel-preset-react-app/webpack-overrides.js
  method config (line 16) | config(config, { source }) {

FILE: packages/cra-template-typescript/template/src/App.tsx
  function App (line 5) | function App() {

FILE: packages/cra-template/template/src/App.js
  function App (line 4) | function App() {

FILE: packages/create-react-app/createReactApp.js
  function isUsingYarn (line 52) | function isUsingYarn() {
  function hasGivenWarning (line 56) | function hasGivenWarning() {
  function writeWarningFile (line 64) | function writeWarningFile() {
  function init (line 74) | function init() {
  function createApp (line 267) | function createApp(name, verbose, version, template, useYarn, usePnp) {
  function install (line 365) | function install(root, useYarn, usePnp, dependencies, verbose, isOnline) {
  function run (line 428) | function run(
  function getInstallPackage (line 579) | function getInstallPackage(version, originalDirectory) {
  function getTemplateInstallPackage (line 629) | function getTemplateInstallPackage(template, originalDirectory) {
  function getTemporaryDirectory (line 676) | function getTemporaryDirectory() {
  function extractStream (line 700) | function extractStream(stream, dest) {
  function getPackageInfo (line 715) | function getPackageInfo(installPackage) {
  function checkNpmVersion (line 775) | function checkNpmVersion() {
  function checkYarnVersion (line 790) | function checkYarnVersion() {
  function checkNodeVersion (line 822) | function checkNodeVersion(packageName) {
  function checkAppName (line 853) | function checkAppName(appName) {
  function makeCaretRange (line 890) | function makeCaretRange(dependencies, name) {
  function setCaretRangeForRuntimeDeps (line 912) | function setCaretRangeForRuntimeDeps(packageName) {
  function isSafeToCreateProjectIn (line 938) | function isSafeToCreateProjectIn(root, name) {
  function getProxy (line 1010) | function getProxy() {
  function checkThatNpmCanReadCwd (line 1025) | function checkThatNpmCanReadCwd() {
  function checkIfOnline (line 1086) | function checkIfOnline(useYarn) {
  function executeNodeScript (line 1109) | function executeNodeScript({ cwd, args }, data, source) {
  function checkForLatestVersion (line 1129) | function checkForLatestVersion() {

FILE: packages/react-dev-utils/FileSizeReporter.js
  function canReadAsset (line 18) | function canReadAsset(asset) {
  function printFileSizesAfterBuild (line 27) | function printFileSizesAfterBuild(
  function removeFileNameHash (line 106) | function removeFileNameHash(buildFolder, fileName) {
  function getDifferenceLabel (line 118) | function getDifferenceLabel(currentSize, previousSize) {
  function measureFileSizesBeforeBuild (line 133) | function measureFileSizesBeforeBuild(buildFolder) {

FILE: packages/react-dev-utils/ForkTsCheckerWarningWebpackPlugin.js
  method apply (line 16) | apply(compiler) {

FILE: packages/react-dev-utils/InlineChunkHtmlPlugin.js
  class InlineChunkHtmlPlugin (line 10) | class InlineChunkHtmlPlugin {
    method constructor (line 11) | constructor(htmlWebpackPlugin, tests) {
    method getInlinedTag (line 16) | getInlinedTag(publicPath, assets, tag) {
    method apply (line 33) | apply(compiler) {

FILE: packages/react-dev-utils/InterpolateHtmlPlugin.js
  class InterpolateHtmlPlugin (line 19) | class InterpolateHtmlPlugin {
    method constructor (line 20) | constructor(htmlWebpackPlugin, replacements) {
    method apply (line 25) | apply(compiler) {

FILE: packages/react-dev-utils/ModuleNotFoundPlugin.js
  class ModuleNotFoundPlugin (line 14) | class ModuleNotFoundPlugin {
    method constructor (line 15) | constructor(appPath, yarnLockFile) {
    method useYarnCommand (line 24) | useYarnCommand() {
    method getRelativePath (line 32) | getRelativePath(_file) {
    method prettierError (line 42) | prettierError(err) {
    method apply (line 99) | apply(compiler) {

FILE: packages/react-dev-utils/ModuleScopePlugin.js
  class ModuleScopePlugin (line 14) | class ModuleScopePlugin {
    method constructor (line 15) | constructor(appSrc, allowedFiles = []) {
    method apply (line 23) | apply(resolver) {

FILE: packages/react-dev-utils/WebpackDevServerUtils.js
  function prepareUrls (line 24) | function prepareUrls(protocol, host, port, pathname = '/') {
  function printInstructions (line 78) | function printInstructions(appName, urls, useYarn) {
  function createCompiler (line 103) | function createCompiler({
  function resolveLoopback (line 232) | function resolveLoopback(proxy) {
  function onProxyError (line 263) | function onProxyError(proxy) {
  function prepareProxy (line 302) | function prepareProxy(proxy, appPublicFolder, servedPathname) {
  function choosePort (line 391) | function choosePort(host, defaultPort) {

FILE: packages/react-dev-utils/browsersHelper.js
  function shouldSetBrowsers (line 25) | function shouldSetBrowsers(isInteractive) {
  function checkBrowsers (line 44) | function checkBrowsers(dir, isInteractive, retry = true) {

FILE: packages/react-dev-utils/checkRequiredFiles.js
  function checkRequiredFiles (line 14) | function checkRequiredFiles(files) {

FILE: packages/react-dev-utils/clearConsole.js
  function clearConsole (line 10) | function clearConsole() {

FILE: packages/react-dev-utils/eslintFormatter.js
  function isError (line 21) | function isError(message) {
  function getRelativePath (line 28) | function getRelativePath(filePath) {
  function formatter (line 32) | function formatter(results) {

FILE: packages/react-dev-utils/evalSourceMapMiddleware.js
  function base64SourceMap (line 9) | function base64SourceMap(source) {
  function getSourceById (line 16) | function getSourceById(server, id) {

FILE: packages/react-dev-utils/formatWebpackMessages.js
  function isLikelyASyntaxError (line 12) | function isLikelyASyntaxError(message) {
  function formatMessage (line 17) | function formatMessage(message) {
  function formatWebpackMessages (line 117) | function formatWebpackMessages(json) {

FILE: packages/react-dev-utils/getProcessForPort.js
  function isProcessAReactApp (line 24) | function isProcessAReactApp(processCommand) {
  function getProcessIdOnPort (line 28) | function getProcessIdOnPort(port) {
  function getPackageNameInDirectory (line 38) | function getPackageNameInDirectory(directory) {
  function getProcessCommand (line 48) | function getProcessCommand(processId, processDirectory) {
  function getDirectoryOfProcessById (line 64) | function getDirectoryOfProcessById(processId) {
  function getProcessForPort (line 73) | function getProcessForPort(port) {

FILE: packages/react-dev-utils/getPublicUrlOrPath.js
  function getPublicUrlOrPath (line 25) | function getPublicUrlOrPath(isEnvDevelopment, homepage, envPublicUrl) {

FILE: packages/react-dev-utils/launchEditor.js
  function isTerminalEditor (line 16) | function isTerminalEditor(editor) {
  constant COMMON_EDITORS_OSX (line 29) | const COMMON_EDITORS_OSX = {
  constant COMMON_EDITORS_LINUX (line 67) | const COMMON_EDITORS_LINUX = {
  constant COMMON_EDITORS_WIN (line 86) | const COMMON_EDITORS_WIN = [
  constant WINDOWS_FILE_NAME_WHITELIST (line 115) | const WINDOWS_FILE_NAME_WHITELIST =
  function addWorkspaceToArgumentsIfExists (line 118) | function addWorkspaceToArgumentsIfExists(args, workspace) {
  function getArgumentsForLineNumber (line 125) | function getArgumentsForLineNumber(
  function guessEditor (line 197) | function guessEditor() {
  function printInstructions (line 261) | function printInstructions(fileName, errorMessage) {
  function launchEditor (line 288) | function launchEditor(fileName, lineNumber, colNumber) {

FILE: packages/react-dev-utils/openBrowser.js
  function getBrowserEnv (line 24) | function getBrowserEnv() {
  function executeNodeScript (line 46) | function executeNodeScript(scriptPath, url) {
  function startBrowserProcess (line 67) | function startBrowserProcess(browser, url, args) {
  function openBrowser (line 140) | function openBrowser(url) {

FILE: packages/react-dev-utils/printHostingInstructions.js
  function printHostingInstructions (line 15) | function printHostingInstructions(
  function printBaseMessage (line 48) | function printBaseMessage(buildFolder, hostingLocation) {
  function printDeployInstructions (line 74) | function printDeployInstructions(publicUrl, hasDeployScript, useYarn) {
  function printStaticServerInstructions (line 114) | function printStaticServerInstructions(buildFolder, useYarn) {

FILE: packages/react-dev-utils/webpackHotDevClient.js
  function clearOutdatedErrors (line 87) | function clearOutdatedErrors() {
  function handleSuccess (line 97) | function handleSuccess() {
  function handleWarnings (line 115) | function handleWarnings(warnings) {
  function handleErrors (line 156) | function handleErrors(errors) {
  function tryDismissErrorOverlay (line 182) | function tryDismissErrorOverlay() {
  function handleAvailableHash (line 189) | function handleAvailableHash(hash) {
  function isUpdateAvailable (line 221) | function isUpdateAvailable() {
  function canApplyUpdates (line 229) | function canApplyUpdates() {
  function canAcceptErrors (line 233) | function canAcceptErrors() {
  function tryApplyUpdates (line 246) | function tryApplyUpdates(onHotUpdateSuccess) {

FILE: packages/react-error-overlay/build.js
  function build (line 24) | function build(config, name, callback) {
  function runBuildSteps (line 62) | function runBuildSteps() {
  function setupWatch (line 70) | function setupWatch() {

FILE: packages/react-error-overlay/fixtures/bundle.mjs
  function hotDisposeChunk (line 2) | function hotDisposeChunk(chunkId) {
  function hotDownloadUpdateChunk (line 12) | function hotDownloadUpdateChunk(chunkId) { // eslint-disable-line no-unu...
  function hotDownloadManifest (line 21) | function hotDownloadManifest() { // eslint-disable-line no-unused-vars
  function hotCreateRequire (line 68) | function hotCreateRequire(moduleId) { // eslint-disable-line no-unused-vars
  function hotCreateModule (line 130) | function hotCreateModule(moduleId) { // eslint-disable-line no-unused-vars
  function hotSetStatus (line 198) | function hotSetStatus(newStatus) {
  function toModuleId (line 215) | function toModuleId(id) {
  function hotCheck (line 220) | function hotCheck(apply) {
  function hotAddUpdateChunk (line 255) | function hotAddUpdateChunk(chunkId, moreModules) { // eslint-disable-lin...
  function hotEnsureUpdateChunk (line 269) | function hotEnsureUpdateChunk(chunkId) {
  function hotUpdateDownloaded (line 279) | function hotUpdateDownloaded() {
  function hotApply (line 301) | function hotApply(options) {
  function __webpack_require__ (line 643) | function __webpack_require__(moduleId) {
  function invariant (line 755) | function invariant(condition, format, a, b, c, d, e, f) {
  function reactProdInvariant (line 918) | function reactProdInvariant(code) {
  function toObject (line 992) | function toObject(val) {
  function shouldUseNative (line 1000) | function shouldUseNative() {
  function useColors (line 1119) | function useColors() {
  function formatArgs (line 1158) | function formatArgs(args) {
  function log (line 1198) | function log() {
  function save (line 1213) | function save(namespaces) {
  function load (line 1230) | function load() {
  function localstorage (line 1261) | function localstorage() {
  function shouldPrecacheNode (line 1306) | function shouldPrecacheNode(node, nodeID) {
  function getRenderedHostOrTextFromComponent (line 1317) | function getRenderedHostOrTextFromComponent(component) {
  function precacheNode (line 1329) | function precacheNode(inst, node) {
  function uncacheNode (line 1335) | function uncacheNode(inst) {
  function precacheChildNodes (line 1357) | function precacheChildNodes(inst, node) {
  function getClosestInstanceFromNode (line 1390) | function getClosestInstanceFromNode(node) {
  function getInstanceFromNode (line 1424) | function getInstanceFromNode(node) {
  function getNodeFromInstance (line 1437) | function getNodeFromInstance(inst) {
  function EventEmitter (line 1536) | function EventEmitter() {
  function g (line 1554) | function g() {
  function isNative (line 1619) | function isNative(fn) {
  function purgeDeep (line 1728) | function purgeDeep(id) {
  function describeComponentFrame (line 1738) | function describeComponentFrame(name, source, ownerName) {
  function getDisplayName (line 1742) | function getDisplayName(element) {
  function describeID (line 1754) | function describeID(id) {
  function makeEmptyFunction (line 2049) | function makeEmptyFunction(arg) {
  function ensureInjected (line 2115) | function ensureInjected() {
  function ReactUpdatesFlushTransaction (line 2149) | function ReactUpdatesFlushTransaction() {
  function batchedUpdates (line 2179) | function batchedUpdates(callback, a, b, c, d, e) {
  function mountOrderComparator (line 2191) | function mountOrderComparator(c1, c2) {
  function runBatchedUpdates (line 2195) | function runBatchedUpdates(transaction) {
  function enqueueUpdate (line 2274) | function enqueueUpdate(component) {
  function asap (line 2298) | function asap(callback, context) {
  function runInContext (line 2414) | function runInContext(context, exports) {
  function SyntheticEvent (line 3363) | function SyntheticEvent(dispatchConfig, targetInst, nativeEvent, nativeE...
  function getPooledWarningPropertyDefinition (line 3543) | function getPooledWarningPropertyDefinition(propName, getVal) {
  function defaultSetTimout (line 3676) | function defaultSetTimout() {
  function defaultClearTimeout (line 3679) | function defaultClearTimeout () {
  function runTimeout (line 3702) | function runTimeout(fun) {
  function runClearTimeout (line 3727) | function runClearTimeout(marker) {
  function cleanUpNextTick (line 3759) | function cleanUpNextTick() {
  function drainQueue (line 3774) | function drainQueue() {
  function Item (line 3812) | function Item(fun, array) {
  function noop (line 3826) | function noop() {}
  function checkMask (line 3873) | function checkMask(value, bitmask) {
  function hasValidRef (line 4230) | function hasValidRef(config) {
  function hasValidKey (line 4242) | function hasValidKey(config) {
  function defineKeyPropWarningGetter (line 4254) | function defineKeyPropWarningGetter(props, displayName) {
  function defineRefPropWarningGetter (line 4268) | function defineRefPropWarningGetter(props, displayName) {
  function reactProdInvariant (line 4569) | function reactProdInvariant(code) {
  function createAjaxSender (line 4611) | function createAjaxSender(AjaxObject) {
  function AjaxBasedTransport (line 4641) | function AjaxBasedTransport(transUrl, urlSuffix, Receiver, AjaxObject) {
  function insertTreeChildren (line 4735) | function insertTreeChildren(tree) {
  function replaceChildWithTree (line 4768) | function replaceChildWithTree(oldNode, newTree) {
  function queueChild (line 4773) | function queueChild(parentTree, childTree) {
  function queueHTML (line 4781) | function queueHTML(tree, html) {
  function queueText (line 4789) | function queueText(tree, text) {
  function toString (line 4797) | function toString() {
  function DOMLazyTree (line 4801) | function DOMLazyTree(node) {
  function attachRefs (line 4850) | function attachRefs() {
  function XHRLocalObject (line 5112) | function XHRLocalObject(method, url, payload /*, opts */) {
  function getArg (line 5390) | function getArg(aArgs, aName, aDefaultValue) {
  function urlParse (line 5404) | function urlParse(aUrl) {
  function urlGenerate (line 5419) | function urlGenerate(aParsedUrl) {
  function normalize (line 5452) | function normalize(aPath) {
  function join (line 5513) | function join(aRoot, aPath) {
  function relative (line 5566) | function relative(aRoot, aPath) {
  function identity (line 5605) | function identity (s) {
  function toSetString (line 5618) | function toSetString(aStr) {
  function fromSetString (line 5627) | function fromSetString(aStr) {
  function isProtoString (line 5636) | function isProtoString(s) {
  function compareByOriginalPositions (line 5676) | function compareByOriginalPositions(mappingA, mappingB, onlyCompareOrigi...
  function compareByGeneratedPositionsDeflated (line 5715) | function compareByGeneratedPositionsDeflated(mappingA, mappingB, onlyCom...
  function strcmp (line 5745) | function strcmp(aStr1, aStr2) {
  function compareByGeneratedPositionsInflated (line 5761) | function compareByGeneratedPositionsInflated(mappingA, mappingB) {
  function isInteractive (line 5894) | function isInteractive(tag) {
  function shouldPreventMouseEvent (line 5898) | function shouldPreventMouseEvent(name, type, props) {
  function listenerAtPhase (line 6145) | function listenerAtPhase(inst, event, propagationPhase) {
  function accumulateDirectionalDispatches (line 6156) | function accumulateDirectionalDispatches(inst, phase, event) {
  function accumulateTwoPhaseDispatchesSingle (line 6174) | function accumulateTwoPhaseDispatchesSingle(event) {
  function accumulateTwoPhaseDispatchesSingleSkipTarget (line 6183) | function accumulateTwoPhaseDispatchesSingleSkipTarget(event) {
  function accumulateDispatches (line 6196) | function accumulateDispatches(inst, ignoredDirection, event) {
  function accumulateDirectDispatchesSingle (line 6212) | function accumulateDirectDispatchesSingle(event) {
  function accumulateTwoPhaseDispatches (line 6218) | function accumulateTwoPhaseDispatches(events) {
  function accumulateTwoPhaseDispatchesSkipTarget (line 6222) | function accumulateTwoPhaseDispatchesSkipTarget(events) {
  function accumulateEnterLeaveDispatches (line 6226) | function accumulateEnterLeaveDispatches(leave, enter, from, to) {
  function accumulateDirectDispatches (line 6230) | function accumulateDirectDispatches(events) {
  function SyntheticUIEvent (line 6373) | function SyntheticUIEvent(dispatchConfig, dispatchMarker, nativeEvent, n...
  function XhrReceiver (line 6402) | function XhrReceiver(url, AjaxObject) {
  function XHRCorsObject (line 6479) | function XHRCorsObject(method, url, payload, opts) {
  function recomputePluginOrdering (line 6532) | function recomputePluginOrdering() {
  function publishEventForPlugin (line 6561) | function publishEventForPlugin(dispatchConfig, pluginModule, eventName) {
  function publishRegistrationName (line 6589) | function publishRegistrationName(registrationName, pluginModule, eventNa...
  function getListeningForDocument (line 6921) | function getListeningForDocument(mountAt) {
  function SyntheticMouseEvent (line 7167) | function SyntheticMouseEvent(dispatchConfig, dispatchMarker, nativeEvent...
  function escapeHtml (line 7473) | function escapeHtml(string) {
  function escapeTextContentForBrowser (line 7531) | function escapeTextContentForBrowser(text) {
  function Event (line 7663) | function Event(eventType) {
  function IframeWrapTransport (line 7704) | function IframeWrapTransport(transUrl, baseUrl) {
  function XDRObject (line 7759) | function XDRObject(method, url, payload) {
  function extractProtocol (line 7937) | function extractProtocol(address) {
  function resolve (line 7955) | function resolve(relative, base) {
  function URL (line 7992) | function URL(address, location, parser) {
  function set (line 8133) | function set(part, value, fn) {
  function toString (line 8214) | function toString(stringify) {
  function is (line 8324) | function is(x, y) {
  function shallowEqual (line 8342) | function shallowEqual(objA, objB) {
  function getNodeAfter (line 8401) | function getNodeAfter(parentNode, node) {
  function insertLazyTreeChildAt (line 8425) | function insertLazyTreeChildAt(parentNode, childTree, referenceNode) {
  function moveChild (line 8429) | function moveChild(parentNode, childNode, referenceNode) {
  function removeChild (line 8437) | function removeChild(parentNode, childNode) {
  function moveDelimitedText (line 8447) | function moveDelimitedText(parentNode, openingComment, closingComment, r...
  function removeDelimitedText (line 8459) | function removeDelimitedText(parentNode, startNode, closingComment) {
  function replaceDelimitedText (line 8471) | function replaceDelimitedText(openingComment, closingComment, stringText) {
  function isEndish (line 8689) | function isEndish(topLevelType) {
  function isMoveish (line 8693) | function isMoveish(topLevelType) {
  function isStartish (line 8696) | function isStartish(topLevelType) {
  function executeDispatch (line 8723) | function executeDispatch(event, simulated, listener, inst) {
  function executeDispatchesInOrder (line 8737) | function executeDispatchesInOrder(event, simulated) {
  function executeDispatchesInOrderStopAtTrueImpl (line 8765) | function executeDispatchesInOrderStopAtTrueImpl(event) {
  function executeDispatchesInOrderStopAtTrue (line 8792) | function executeDispatchesInOrderStopAtTrue(event) {
  function executeDirectDispatch (line 8808) | function executeDirectDispatch(event) {
  function hasDispatches (line 8827) | function hasDispatches(event) {
  function escape (line 8901) | function escape(key) {
  function unescape (line 8920) | function unescape(key) {
  function _assertSingleLink (line 8980) | function _assertSingleLink(inputProps) {
  function _assertValueLink (line 8983) | function _assertValueLink(inputProps) {
  function _assertCheckedLink (line 8988) | function _assertCheckedLink(inputProps) {
  function getDeclarationErrorAddendum (line 9010) | function getDeclarationErrorAddendum(owner) {
  function invokeGuardedCallback (line 9174) | function invokeGuardedCallback(name, func, a) {
  function enqueueUpdate (line 9260) | function enqueueUpdate(internalInstance) {
  function formatUnexpectedArgument (line 9264) | function formatUnexpectedArgument(arg) {
  function getInternalInstanceReadyForUpdate (line 9277) | function getInternalInstanceReadyForUpdate(publicInstance, callerName) {
  function getEventCharCode (line 9539) | function getEventCharCode(nativeEvent) {
  function modifierStateGetter (line 9603) | function modifierStateGetter(keyArg) {
  function getEventModifierState (line 9613) | function getEventModifierState(nativeEvent) {
  function getEventTarget (line 9649) | function getEventTarget(nativeEvent) {
  function isEventSupported (line 9710) | function isEventSupported(eventNameSuffix, capture) {
  function shouldUpdateReactComponent (line 9768) | function shouldUpdateReactComponent(prevElement, nextElement) {
  function ReactComponent (line 10212) | function ReactComponent(props, context, updater) {
  function warnNoop (line 10330) | function warnNoop(publicInstance, callerName) {
  function getIteratorFn (line 10525) | function getIteratorFn(maybeIterable) {
  function ansiHTML (line 10638) | function ansiHTML(txt) {
  function isDecimalDigit (line 10750) | function isDecimalDigit(ch) {
  function isHexDigit (line 10754) | function isHexDigit(ch) {
  function isOctalDigit (line 10760) | function isOctalDigit(ch) {
  function isWhiteSpace (line 10774) | function isWhiteSpace(ch) {
  function isLineTerminator (line 10781) | function isLineTerminator(ch) {
  function fromCodePoint (line 10787) | function fromCodePoint(cp) {
  function isIdentifierStartES5 (line 10811) | function isIdentifierStartES5(ch) {
  function isIdentifierPartES5 (line 10815) | function isIdentifierPartES5(ch) {
  function isIdentifierStartES6 (line 10819) | function isIdentifierStartES6(ch) {
  function isIdentifierPartES6 (line 10823) | function isIdentifierPartES6(ch) {
  function Html5Entities (line 10861) | function Html5Entities() {}
  function createIndexes (line 11016) | function createIndexes(alphaIndex, charIndex) {
  function EventTarget (line 11059) | function EventTarget() {
  function InfoAjax (line 11140) | function InfoAjax(url, AjaxObject) {
  function InfoReceiverIframe (line 11197) | function InfoReceiverIframe(transUrl) {
  function AbstractXHRObject (line 11270) | function AbstractXHRObject(method, url, payload, opts) {
  function EventSourceTransport (line 11484) | function EventSourceTransport(transUrl) {
  function HtmlFileTransport (line 11522) | function HtmlFileTransport(transUrl) {
  function IframeTransport (line 11576) | function IframeTransport(transport, transUrl, baseUrl) {
  function SenderReceiver (line 11717) | function SenderReceiver(transUrl, urlSuffix, senderFunc, Receiver, AjaxO...
  function XdrStreamingTransport (line 11773) | function XdrStreamingTransport(transUrl) {
  function XhrPollingTransport (line 11814) | function XhrPollingTransport(transUrl) {
  function ArraySet (line 11877) | function ArraySet() {
  function toVLQSigned (line 12044) | function toVLQSigned(aValue) {
  function fromVLQSigned (line 12056) | function fromVLQSigned(aValue) {
  function SourceMapGenerator (line 12147) | function SourceMapGenerator(aArgs) {
  function focusNode (line 12732) | function focusNode(node) {
  function getActiveElement (line 12775) | function getActiveElement() /*?DOMElement*/{
  function noop (line 12802) | function noop() {}
  function getThen (line 12823) | function getThen(obj) {
  function tryCallOne (line 12832) | function tryCallOne(fn, a) {
  function tryCallTwo (line 12840) | function tryCallTwo(fn, a, b) {
  function Promise (line 12851) | function Promise(fn) {
  function safeThen (line 12878) | function safeThen(self, onFulfilled, onRejected) {
  function handle (line 12885) | function handle(self, deferred) {
  function handleResolved (line 12909) | function handleResolved(self, deferred) {
  function resolve (line 12928) | function resolve(self, newValue) {
  function reject (line 12962) | function reject(self, newValue) {
  function finale (line 12970) | function finale(self) {
  function Handler (line 12983) | function Handler(onFulfilled, onRejected, promise){
  function doResolve (line 12995) | function doResolve(fn, promise) {
  function prefixKey (line 13084) | function prefixKey(prefix, key) {
  function _classCallCheck (line 13196) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
  function CallbackQueue (line 13215) | function CallbackQueue(arg) {
  function isAttributeNameSafe (line 13333) | function isAttributeNameSafe(attributeName) {
  function shouldIgnoreValue (line 13349) | function shouldIgnoreValue(propertyInfo, value) {
  function updateOptionsIfPendingUpdateAndMounted (line 13608) | function updateOptionsIfPendingUpdateAndMounted() {
  function getDeclarationErrorAddendum (line 13621) | function getDeclarationErrorAddendum(owner) {
  function checkSelectPropTypes (line 13637) | function checkSelectPropTypes(inst, props) {
  function updateOptions (line 13666) | function updateOptions(inst, multiple, propValue) {
  function _handleChange (line 13772) | function _handleChange(event) {
  function createInternalComponent (line 13905) | function createInternalComponent(element) {
  function createInstanceForText (line 13914) | function createInstanceForText(text) {
  function isTextComponent (line 13922) | function isTextComponent(component) {
  function isInDocument (line 13963) | function isInDocument(node) {
  function firstDifferenceIndex (line 14131) | function firstDifferenceIndex(string1, string2) {
  function getReactRootElementInContainer (line 14146) | function getReactRootElementInContainer(container) {
  function internalGetID (line 14158) | function internalGetID(node) {
  function mountComponentIntoNode (line 14173) | function mountComponentIntoNode(wrapperInstance, container, transaction,...
  function batchedMountComponentIntoNode (line 14200) | function batchedMountComponentIntoNode(componentInstance, container, sho...
  function unmountComponentFromNode (line 14217) | function unmountComponentFromNode(instance, container, safely) {
  function hasNonRootReactChild (line 14246) | function hasNonRootReactChild(container) {
  function nodeIsRenderedByOtherInstance (line 14262) | function nodeIsRenderedByOtherInstance(container) {
  function isValidContainer (line 14274) | function isValidContainer(node) {
  function isReactNode (line 14285) | function isReactNode(node) {
  function getHostRootInstanceInContainer (line 14289) | function getHostRootInstanceInContainer(container) {
  function getTopLevelWrapperInContainer (line 14295) | function getTopLevelWrapperInContainer(container) {
  function accumulateInto (line 14771) | function accumulateInto(current, next) {
  function forEachAccumulated (line 14830) | function forEachAccumulated(arr, cb, scope) {
  function getHostComponentFromComposite (line 14864) | function getHostComponentFromComposite(inst) {
  function getTextContentAccessor (line 14912) | function getTextContentAccessor() {
  function getDeclarationErrorAddendum (line 14964) | function getDeclarationErrorAddendum(owner) {
  function isInternalComponentType (line 14981) | function isInternalComponentType(type) {
  function instantiateReactComponent (line 14993) | function instantiateReactComponent(node, shouldHaveDebugID) {
  function isTextInputElement (line 15106) | function isTextInputElement(elem) {
  function getComponentKey (line 15239) | function getComponentKey(component, index) {
  function traverseAllChildrenImpl (line 15258) | function traverseAllChildrenImpl(children, nameSoFar, callback, traverse...
  function traverseAllChildren (line 15360) | function traverseAllChildren(children, callback, traverseContext) {
  function getDeclarationErrorAddendum (line 15439) | function getDeclarationErrorAddendum() {
  function getCurrentComponentErrorInfo (line 15456) | function getCurrentComponentErrorInfo(parentType) {
  function validateExplicitKey (line 15479) | function validateExplicitKey(element, parentType) {
  function validateChildKeys (line 15514) | function validateChildKeys(node, parentType) {
  function validatePropTypes (line 15553) | function validatePropTypes(element) {
  function addStylesToDom (line 15756) | function addStylesToDom(styles, options) {
  function listToStyles (line 15778) | function listToStyles(list) {
  function insertStyleElement (line 15796) | function insertStyleElement(options, styleElement) {
  function removeStyleElement (line 15815) | function removeStyleElement(styleElement) {
  function createStyleElement (line 15823) | function createStyleElement(options) {
  function createLinkElement (line 15830) | function createLinkElement(options) {
  function addStyle (line 15837) | function addStyle(obj, options) {
  function applyToSingletonTag (line 15888) | function applyToSingletonTag(styleElement, index, remove, obj) {
  function applyToTag (line 15905) | function applyToTag(styleElement, obj) {
  function updateLink (line 15923) | function updateLink(linkElement, obj) {
  function getHead (line 15977) | function getHead() {
  function injectCss (line 15984) | function injectCss(css) {
  function applyStyles (line 16175) | function applyStyles(element, styles) {
  function consumeEvent (line 16195) | function consumeEvent(e) {
  function accessify (line 16200) | function accessify(node) {
  function renderAdditional (line 16211) | function renderAdditional() {
  function removeNextBr (line 16248) | function removeNextBr(parent, component) {
  function absolutifyCode (line 16257) | function absolutifyCode(component) {
  function sourceCodePre (line 16269) | function sourceCodePre(sourceLines, lineNum, columnNum) {
  function createHint (line 16329) | function createHint(hint) {
  function hintsDiv (line 16336) | function hintsDiv() {
  function frameDiv (line 16349) | function frameDiv(functionName, url, internalUrl) {
  function getGroupToggle (line 16386) | function getGroupToggle(omitsCount, omitBundle) {
  function insertBeforeBundle (line 16416) | function insertBeforeBundle(parent, omitsCount, omitBundle, actionElemen...
  function traceFrame (line 16439) | function traceFrame(
  function lazyFrame (line 16529) | function lazyFrame(parent, factory, lIndex) {
  function traceDiv (line 16570) | function traceDiv(resolvedFrames) {
  function footer (line 16603) | function footer() {
  function render (line 16620) | function render(error, name, message, resolvedFrames) {
  function dispose (line 16665) | function dispose() {
  function unmount (line 16676) | function unmount() {
  function isInternalFile (line 16682) | function isInternalFile(url, sourceFileName) {
  function renderError (line 16688) | function renderError(index) {
  function crash (line 16707) | function crash(error) {
  function switchError (line 16774) | function switchError(offset) {
  function createOverlayIframe (line 16931) | function createOverlayIframe(onIframeLoad) {
  function addOverlayDivTo (line 16948) | function addOverlayDivTo(iframe) {
  function ensureOverlayDivExists (line 16975) | function ensureOverlayDivExists(onOverlayDivReady) {
  function showErrorOverlay (line 17004) | function showErrorOverlay(message) {
  function destroyErrorOverlay (line 17014) | function destroyErrorOverlay() {
  function clearOutdatedErrors (line 17052) | function clearOutdatedErrors() {
  function handleSuccess (line 17060) | function handleSuccess() {
  function handleWarnings (line 17075) | function handleWarnings(warnings) {
  function handleErrors (line 17104) | function handleErrors(errors) {
  function handleAvailableHash (line 17129) | function handleAvailableHash(hash) {
  function isUpdateAvailable (line 17161) | function isUpdateAvailable() {
  function canApplyUpdates (line 17169) | function canApplyUpdates() {
  function tryApplyUpdates (line 17174) | function tryApplyUpdates(onHotUpdateSuccess) {
  function _interopRequireDefault (line 17285) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
  function isLikelyASyntaxError (line 17325) | function isLikelyASyntaxError(message) {
  function formatMessage (line 17330) | function formatMessage(message) {
  function formatWebpackMessages (line 17419) | function formatWebpackMessages(json) {
  function defineProperties (line 17456) | function defineProperties(target, props) { for (var i = 0; i < props.len...
  function _classCallCheck (line 17458) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
  function Anser (line 17580) | function Anser() {
  function assembleStyles (line 18050) | function assembleStyles () {
  function _interopRequireDefault (line 18195) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
  function getDefs (line 18197) | function getDefs(chalk) {
  function getTokenType (line 18220) | function getTokenType(match) {
  function highlight (line 18248) | function highlight(defs, text) {
  function Chalk (line 18299) | function Chalk(options) {
  function build (line 18327) | function build(_styles) {
  function applyStyle (line 18342) | function applyStyle() {
  function init (line 18385) | function init() {
  function selectColor (line 18461) | function selectColor(namespace) {
  function createDebug (line 18480) | function createDebug(namespace) {
  function enable (line 18555) | function enable(namespaces) {
  function disable (line 18581) | function disable() {
  function enabled (line 18593) | function enabled(name) {
  function coerce (line 18616) | function coerce(val) {
  function isExpression (line 18886) | function isExpression(node) {
  function isIterationStatement (line 18910) | function isIterationStatement(node) {
  function isStatement (line 18922) | function isStatement(node) {
  function isSourceElement (line 18948) | function isSourceElement(node) {
  function trailingStatement (line 18952) | function trailingStatement(node) {
  function isProblematicIfStatement (line 18970) | function isProblematicIfStatement(node) {
  function isStrictModeReservedWordES6 (line 19043) | function isStrictModeReservedWordES6(id) {
  function isKeywordES5 (line 19059) | function isKeywordES5(id, strict) {
  function isKeywordES6 (line 19067) | function isKeywordES6(id, strict) {
  function isReservedWordES5 (line 19098) | function isReservedWordES5(id, strict) {
  function isReservedWordES6 (line 19102) | function isReservedWordES6(id, strict) {
  function isRestrictedWord (line 19106) | function isRestrictedWord(id) {
  function isIdentifierNameES5 (line 19110) | function isIdentifierNameES5(id) {
  function decodeUtf16 (line 19129) | function decodeUtf16(lead, trail) {
  function isIdentifierNameES6 (line 19133) | function isIdentifierNameES6(id) {
  function isIdentifierES5 (line 19158) | function isIdentifierES5(id, strict) {
  function isIdentifierES6 (line 19162) | function isIdentifierES6(id, strict) {
  function Html4Entities (line 19286) | function Html4Entities() {}
  function XmlEntities (line 19457) | function XmlEntities() {}
  function parse (line 19666) | function parse(str) {
  function fmtShort (line 19725) | function fmtShort(ms) {
  function fmtLong (line 19749) | function fmtLong(ms) {
  function plural (line 19761) | function plural(ms, n, name) {
  function querystring (line 19793) | function querystring(query) {
  function querystringify (line 19819) | function querystringify(obj, prefix) {
  function wrap (line 19934) | function wrap(innerFn, outerFn, self, tryLocsList) {
  function tryCatch (line 19958) | function tryCatch(fn, obj, arg) {
  function Generator (line 19979) | function Generator() {}
  function GeneratorFunction (line 19980) | function GeneratorFunction() {}
  function GeneratorFunctionPrototype (line 19981) | function GeneratorFunctionPrototype() {}
  function defineIteratorMethods (line 20009) | function defineIteratorMethods(prototype) {
  function AsyncIterator (line 20048) | function AsyncIterator(generator) {
  function makeInvokeMethod (line 20145) | function makeInvokeMethod(innerFn, self, context) {
  function maybeInvokeDelegate (line 20227) | function maybeInvokeDelegate(delegate, context) {
  function pushTryEntry (line 20315) | function pushTryEntry(locs) {
  function resetTryEntry (line 20330) | function resetTryEntry(entry) {
  function Context (line 20337) | function Context(tryLocsList) {
  function values (line 20373) | function values(iterable) {
  function doneResult (line 20409) | function doneResult() {
  function handle (line 20460) | function handle(loc, caught) {
  function CloseEvent (line 20712) | function CloseEvent() {
  function TransportMessageEvent (line 20741) | function TransportMessageEvent(data) {
  function FacadeJS (line 20768) | function FacadeJS(transport) {
  function InfoIframe (line 20930) | function InfoIframe(baseUrl, url) {
  function InfoReceiver (line 21015) | function InfoReceiver(baseUrl, urlInfo) {
  function SockJS (line 21129) | function SockJS(url, protocols, options) {
  function userSetCode (line 21224) | function userSetCode(code) {
  function toInteger (line 21567) | function toInteger(num) {
  function ToUint32 (line 21577) | function ToUint32(x) {
  function Empty (line 21589) | function Empty() {}
  function JsonPTransport (line 22025) | function JsonPTransport(transUrl) {
  function BufferedSender (line 22067) | function BufferedSender(url, sender) {
  function Polling (line 22166) | function Polling(Receiver, receiveUrl, AjaxObject) {
  function EventSourceReceiver (line 22236) | function EventSourceReceiver(url) {
  function HtmlfileReceiver (line 22313) | function HtmlfileReceiver(url) {
  function JsonpReceiver (line 22414) | function JsonpReceiver(url) {
  function createIframe (line 22608) | function createIframe(id) {
  function createForm (line 22620) | function createForm() {
  function XHRFake (line 22713) | function XHRFake(/* method, url, payload, opts */) {
  function WebSocketTransport (line 22757) | function WebSocketTransport(transUrl, ignore, options) {
  function XdrPollingTransport (line 22863) | function XdrPollingTransport(transUrl) {
  function XhrStreamingTransport (line 22899) | function XhrStreamingTransport(transUrl) {
  function recursiveSearch (line 23228) | function recursiveSearch(aLow, aHigh, aNeedle, aHaystack, aCompare, aBia...
  function generatedPositionAfter (line 23340) | function generatedPositionAfter(mappingA, mappingB) {
  function MappingList (line 23355) | function MappingList() {
  function swap (line 23444) | function swap(ary, x, y) {
  function randomIntInRange (line 23458) | function randomIntInRange(low, high) {
  function doQuickSort (line 23474) | function doQuickSort(ary, comparator, p, r) {
  function SourceMapConsumer (line 23555) | function SourceMapConsumer(aSourceMap) {
  function BasicSourceMapConsumer (line 23823) | function BasicSourceMapConsumer(aSourceMap) {
  function Mapping (line 23949) | function Mapping() {
  function IndexedSourceMapConsumer (line 24364) | function IndexedSourceMapConsumer(aSourceMap) {
  function SourceNode (line 24669) | function SourceNode(aLine, aColumn, aSource, aChunks, aName) {
  function addMappingWithCode (line 24778) | function addMappingWithCode(mapping, code) {
  function _interopRequireDefault (line 25535) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
  function _asyncToGenerator (line 25537) | function _asyncToGenerator(fn) { return function () { var gen = fn.apply...
  function _classCallCheck (line 25539) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
  function getLinesAround (line 25565) | function getLinesAround(line, count) {
  function _isNumber (line 25610) | function _isNumber(n) {
  function _capitalize (line 25614) | function _capitalize(str) {
  function _getter (line 25618) | function _getter(p) {
  function StackFrame (line 25629) | function StackFrame(obj) {
  function rawAsap (line 25860) | function rawAsap(task) {
  function flush (line 25892) | function flush() {
  function makeRequestCallFromMutationObserver (line 25986) | function makeRequestCallFromMutationObserver(callback) {
  function makeRequestCallFromTimer (line 26037) | function makeRequestCallFromTimer(callback) {
  function defineProperties (line 26090) | function defineProperties(target, props) { for (var i = 0; i < props.len...
  function _interopRequireDefault (line 26102) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
  function _classCallCheck (line 26104) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
  function _possibleConstructorReturn (line 26106) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
  function _inherits (line 26108) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
  function App (line 26113) | function App() {
  function camelize (line 26226) | function camelize(string) {
  function camelizeStyleName (line 26278) | function camelizeStyleName(string) {
  function containsNode (line 26314) | function containsNode(outerNode, innerNode) {
  function toArray (line 26368) | function toArray(obj) {
  function hasArrayNature (line 26416) | function hasArrayNature(obj) {
  function createArrayFromMixed (line 26459) | function createArrayFromMixed(obj) {
  function getNodeName (line 26518) | function getNodeName(markup) {
  function createNodesFromMarkup (line 26533) | function createNodesFromMarkup(markup, handleScript) {
  function getMarkupWrap (line 26652) | function getMarkupWrap(nodeName) {
  function getUnboundedScrollPosition (line 26704) | function getUnboundedScrollPosition(scrollable) {
  function hyphenate (line 26756) | function hyphenate(string) {
  function hyphenateStyleName (line 26805) | function hyphenateStyleName(string) {
  function isNode (line 26838) | function isNode(object) {
  function isTextNode (line 26873) | function isTextNode(object) {
  function memoizeStringOnly (line 26907) | function memoizeStringOnly(callback) {
  function valuePromise (line 27034) | function valuePromise(value) {
  function res (line 27071) | function res(i, val) {
  function disable (line 27148) | function disable() {
  function enable (line 27155) | function enable(options) {
  function logError (line 27236) | function logError(id, error) {
  function matchWhitelist (line 27244) | function matchWhitelist(error, list) {
  function error (line 27324) | function error(type) {
  function map (line 27336) | function map(array, fn) {
  function mapDomain (line 27355) | function mapDomain(string, fn) {
  function ucs2decode (line 27384) | function ucs2decode(string) {
  function ucs2encode (line 27418) | function ucs2encode(array) {
  function basicToDigit (line 27440) | function basicToDigit(codePoint) {
  function digitToBasic (line 27464) | function digitToBasic(digit, flag) {
  function adapt (line 27475) | function adapt(delta, numPoints, firstTime) {
  function decode (line 27492) | function decode(input) {
  function encode (line 27593) | function encode(input) {
  function toUnicode (line 27711) | function toUnicode(input) {
  function toASCII (line 27730) | function toASCII(input) {
  function hasOwnProperty (line 27830) | function hasOwnProperty(obj, prop) {
  function map (line 27969) | function map (xs, f) {
  function isPresto (line 28188) | function isPresto() {
  function isKeypressCommand (line 28236) | function isKeypressCommand(nativeEvent) {
  function getCompositionEventType (line 28248) | function getCompositionEventType(topLevelType) {
  function isFallbackCompositionStart (line 28267) | function isFallbackCompositionStart(topLevelType, nativeEvent) {
  function isFallbackCompositionEnd (line 28278) | function isFallbackCompositionEnd(topLevelType, nativeEvent) {
  function getDataFromCustomEvent (line 28306) | function getDataFromCustomEvent(nativeEvent) {
  function extractCompositionEvent (line 28320) | function extractCompositionEvent(topLevelType, targetInst, nativeEvent, ...
  function getNativeBeforeInputChars (line 28372) | function getNativeBeforeInputChars(topLevelType, nativeEvent) {
  function getFallbackBeforeInputChars (line 28426) | function getFallbackBeforeInputChars(topLevelType, nativeEvent) {
  function extractBeforeInputEvent (line 28480) | function extractBeforeInputEvent(topLevelType, targetInst, nativeEvent, ...
  function shouldUseChangeEvent (line 28804) | function shouldUseChangeEvent(elem) {
  function manualDispatchChangeEvent (line 28815) | function manualDispatchChangeEvent(nativeEvent) {
  function runEventInBatch (line 28833) | function runEventInBatch(event) {
  function startWatchingForChangeEventIE8 (line 28838) | function startWatchingForChangeEventIE8(target, targetInst) {
  function stopWatchingForChangeEventIE8 (line 28844) | function stopWatchingForChangeEventIE8() {
  function getTargetInstForChangeEvent (line 28853) | function getTargetInstForChangeEvent(topLevelType, targetInst) {
  function handleEventsForChangeEventIE8 (line 28858) | function handleEventsForChangeEventIE8(topLevelType, target, targetInst) {
  function startWatchingForValueChange (line 28901) | function startWatchingForValueChange(target, targetInst) {
  function stopWatchingForValueChange (line 28921) | function stopWatchingForValueChange() {
  function handlePropertyChange (line 28945) | function handlePropertyChange(nativeEvent) {
  function getTargetInstForInputEvent (line 28961) | function getTargetInstForInputEvent(topLevelType, targetInst) {
  function handleEventsForInputEventIE (line 28969) | function handleEventsForInputEventIE(topLevelType, target, targetInst) {
  function getTargetInstForInputEventIE (line 28992) | function getTargetInstForInputEventIE(topLevelType, targetInst) {
  function shouldUseClickEvent (line 29014) | function shouldUseClickEvent(elem) {
  function getTargetInstForClickEvent (line 29021) | function getTargetInstForClickEvent(topLevelType, targetInst) {
  function FallbackCompositionState (line 29324) | function FallbackCompositionState(root) {
  function instantiateChild (line 29653) | function instantiateChild(childInstances, child, name, selfDebugID) {
  function StatelessComponent (line 29867) | function StatelessComponent(Component) {}
  function warnIfInvalidElement (line 29875) | function warnIfInvalidElement(Component, element) {
  function shouldConstruct (line 29882) | function shouldConstruct(Component) {
  function isPureComponent (line 29886) | function isPureComponent(Component) {
  function measureLifeCyclePerf (line 29891) | function measureLifeCyclePerf(fn, debugID, timerType) {
  function getDeclarationErrorAddendum (line 30924) | function getDeclarationErrorAddendum(internalInstance) {
  function friendlyStringify (line 30937) | function friendlyStringify(obj) {
  function checkAndWarnForMutatedStyle (line 30963) | function checkAndWarnForMutatedStyle(style1, style2, component) {
  function assertValidProps (line 30993) | function assertValidProps(component, props) {
  function enqueuePutListener (line 31013) | function enqueuePutListener(inst, registrationName, listener, transactio...
  function putListener (line 31033) | function putListener() {
  function inputPostMount (line 31038) | function inputPostMount() {
  function textareaPostMount (line 31043) | function textareaPostMount() {
  function optionPostMount (line 31048) | function optionPostMount() {
  function trapBubbledEventsLocal (line 31110) | function trapBubbledEventsLocal() {
  function postUpdateSelectWrapper (line 31151) | function postUpdateSelectWrapper() {
  function validateDangerousTag (line 31197) | function validateDangerousTag(tag) {
  function isCustomComponent (line 31204) | function isCustomComponent(tagName, props) {
  function ReactDOMComponent (line 31224) | function ReactDOMComponent(element) {
  function ReactDOMContainerInfo (line 31887) | function ReactDOMContainerInfo(topLevelWrapper, node) {
  function forceUpdateIfMounted (line 32087) | function forceUpdateIfMounted() {
  function isControlled (line 32094) | function isControlled(props) {
  function _handleChange (line 32285) | function _handleChange(event) {
  function validateProperty (line 32365) | function validateProperty(tagName, name, debugID) {
  function warnInvalidARIAProps (line 32391) | function warnInvalidARIAProps(debugID, element) {
  function handleElement (line 32412) | function handleElement(debugID, element) {
  function handleElement (line 32466) | function handleElement(debugID, element) {
  function flattenChildren (line 32522) | function flattenChildren(children) {
  function isCollapsed (line 32656) | function isCollapsed(anchorNode, anchorOffset, focusNode, focusOffset) {
  function getIEOffsets (line 32674) | function getIEOffsets(node) {
  function getModernOffsets (line 32697) | function getModernOffsets(node) {
  function setIEOffsets (line 32759) | function setIEOffsets(node, offsets) {
  function setModernOffsets (line 32793) | function setModernOffsets(node, offsets) {
  function forceUpdateIfMounted (line 33055) | function forceUpdateIfMounted() {
  function _handleChange (line 33181) | function _handleChange(event) {
  function getLowestCommonAncestor (line 33220) | function getLowestCommonAncestor(instA, instB) {
  function isAncestor (line 33260) | function isAncestor(instA, instB) {
  function getParentInstance (line 33276) | function getParentInstance(inst) {
  function traverseTwoPhase (line 33285) | function traverseTwoPhase(inst, fn, arg) {
  function traverseEnterLeave (line 33307) | function traverseEnterLeave(from, to, fn, argFrom, argTo) {
  function handleElement (line 33437) | function handleElement(debugID, element) {
  function callHook (line 33492) | function callHook(event, fn, context, arg1, arg2, arg3, arg4, arg5) {
  function emitEvent (line 33501) | function emitEvent(event, arg1, arg2, arg3, arg4, arg5) {
  function clearHistory (line 33524) | function clearHistory() {
  function getTreeSnapshot (line 33529) | function getTreeSnapshot(registeredIDs) {
  function resetMeasurements (line 33546) | function resetMeasurements() {
  function checkDebugID (line 33573) | function checkDebugID(debugID) {
  function beginLifeCycleTimer (line 33584) | function beginLifeCycleTimer(debugID, timerType) {
  function endLifeCycleTimer (line 33598) | function endLifeCycleTimer(debugID, timerType) {
  function pauseCurrentLifeCycleTimer (line 33619) | function pauseCurrentLifeCycleTimer() {
  function resumeCurrentLifeCycleTimer (line 33633) | function resumeCurrentLifeCycleTimer() {
  function shouldMark (line 33652) | function shouldMark(debugID) {
  function markBegin (line 33667) | function markBegin(debugID, markType) {
  function markEnd (line 33677) | function markEnd(debugID, markType) {
  function ReactDefaultBatchingStrategyTransaction (line 33872) | function ReactDefaultBatchingStrategyTransaction() {
  function inject (line 33951) | function inject() {
  function runEventQueueInBatch (line 34057) | function runEventQueueInBatch(events) {
  function findParent (line 34114) | function findParent(inst) {
  function TopLevelCallbackBookKeeping (line 34127) | function TopLevelCallbackBookKeeping(topLevelType, nativeEvent) {
  function handleTopLevelImpl (line 34141) | function handleTopLevelImpl(bookKeeping) {
  function scrollValueMonitor (line 34161) | function scrollValueMonitor(cb) {
  function makeInsertMarkup (line 34479) | function makeInsertMarkup(markup, afterNode, toIndex) {
  function makeMove (line 34498) | function makeMove(child, afterNode, toIndex) {
  function makeRemove (line 34516) | function makeRemove(child, node) {
  function makeSetMarkup (line 34534) | function makeSetMarkup(markup) {
  function makeTextContent (line 34552) | function makeTextContent(textContent) {
  function enqueue (line 34568) | function enqueue(queue, update) {
  function processQueue (line 34581) | function processQueue(inst, updateQueue) {
  function isValidOwner (line 34928) | function isValidOwner(object) {
  function ReactReconcileTransaction (line 35156) | function ReactReconcileTransaction(useCreateElement) {
  function attachRef (line 35250) | function attachRef(ref, component, owner) {
  function detachRef (line 35259) | function detachRef(ref, component, owner) {
  function ReactServerRenderingTransaction (line 35373) | function ReactServerRenderingTransaction(renderToStaticMarkup) {
  function _classCallCheck (line 35445) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
  function warnNoop (line 35451) | function warnNoop(publicInstance, callerName) {
  function ReactServerUpdateQueue (line 35467) | function ReactServerUpdateQueue(transaction) {
  function getSelection (line 35969) | function getSelection(node) {
  function constructSelectEvent (line 36000) | function constructSelectEvent(nativeEvent, nativeEventTarget) {
  function getDictionaryKey (line 36190) | function getDictionaryKey(inst) {
  function isInteractive (line 36196) | function isInteractive(tag) {
  function SyntheticAnimationEvent (line 36387) | function SyntheticAnimationEvent(dispatchConfig, dispatchMarker, nativeE...
  function SyntheticClipboardEvent (line 36435) | function SyntheticClipboardEvent(dispatchConfig, dispatchMarker, nativeE...
  function SyntheticCompositionEvent (line 36481) | function SyntheticCompositionEvent(dispatchConfig, dispatchMarker, nativ...
  function SyntheticDragEvent (line 36527) | function SyntheticDragEvent(dispatchConfig, dispatchMarker, nativeEvent,...
  function SyntheticFocusEvent (line 36573) | function SyntheticFocusEvent(dispatchConfig, dispatchMarker, nativeEvent...
  function SyntheticInputEvent (line 36620) | function SyntheticInputEvent(dispatchConfig, dispatchMarker, nativeEvent...
  function SyntheticKeyboardEvent (line 36714) | function SyntheticKeyboardEvent(dispatchConfig, dispatchMarker, nativeEv...
  function SyntheticTouchEvent (line 36769) | function SyntheticTouchEvent(dispatchConfig, dispatchMarker, nativeEvent...
  function SyntheticTransitionEvent (line 36818) | function SyntheticTransitionEvent(dispatchConfig, dispatchMarker, native...
  function SyntheticWheelEvent (line 36882) | function SyntheticWheelEvent(dispatchConfig, dispatchMarker, nativeEvent...
  function adler32 (line 36920) | function adler32(data) {
  function checkReactTypeSpec (line 36999) | function checkReactTypeSpec(typeSpecs, values, location, componentName, ...
  function dangerousStyleValue (line 37080) | function dangerousStyleValue(name, value, component) {
  function findDOMNode (line 37171) | function findDOMNode(componentOrElement) {
  function flattenSingleChildIntoContext (line 37245) | function flattenSingleChildIntoContext(traverseContext, child, name, sel...
  function flattenChildren (line 37269) | function flattenChildren(children, selfDebugID) {
  function getEventKey (line 37369) | function getEventKey(nativeEvent) {
  function getIteratorFn (line 37442) | function getIteratorFn(maybeIterable) {
  function getNextDebugID (line 37476) | function getNextDebugID() {
  function getLeafNode (line 37511) | function getLeafNode(node) {
  function getSiblingNode (line 37525) | function getSiblingNode(node) {
  function getNodeForCharacterOffset (line 37541) | function getNodeForCharacterOffset(root, offset) {
  function makePrefixMap (line 37597) | function makePrefixMap(styleProp, eventName) {
  function getVendorPrefixedEventName (line 37657) | function getVendorPrefixedEventName(eventName) {
  function quoteAttributeValueForBrowser (line 37707) | function quoteAttributeValueForBrowser(value) {
  function escape (line 37769) | function escape(key) {
  function unescape (line 37788) | function unescape(key) {
  function escapeUserProvidedKey (line 37962) | function escapeUserProvidedKey(text) {
  function ForEachBookKeeping (line 37974) | function ForEachBookKeeping(forEachFunction, forEachContext) {
  function forEachSingleChild (line 37986) | function forEachSingleChild(bookKeeping, child, name) {
  function forEachChildren (line 38005) | function forEachChildren(children, forEachFunc, forEachContext) {
  function MapBookKeeping (line 38023) | function MapBookKeeping(mapResult, keyPrefix, mapFunction, mapContext) {
  function mapSingleChildIntoContext (line 38039) | function mapSingleChildIntoContext(bookKeeping, child, childKey) {
  function mapIntoWithKeyPrefixInternal (line 38060) | function mapIntoWithKeyPrefixInternal(children, array, prefix, func, con...
  function mapChildren (line 38083) | function mapChildren(children, func, context) {
  function forEachSingleChildDummy (line 38092) | function forEachSingleChildDummy(traverseContext, child, name) {
  function countChildren (line 38105) | function countChildren(children, context) {
  function toArray (line 38115) | function toArray(children) {
  function identity (line 38169) | function identity(fn) {
  function validateTypeDef (line 38479) | function validateTypeDef(Constructor, typeDef, location) {
  function validateMethodOverride (line 38489) | function validateMethodOverride(isAlreadyDefined, name) {
  function mixSpecIntoComponent (line 38507) | function mixSpecIntoComponent(Constructor, spec) {
  function mixStaticSpecIntoComponent (line 38589) | function mixStaticSpecIntoComponent(Constructor, statics) {
  function mergeIntoWithNoDuplicateKeys (line 38615) | function mergeIntoWithNoDuplicateKeys(one, two) {
  function createMergedResultFunction (line 38635) | function createMergedResultFunction(one, two) {
  function createChainedFunction (line 38659) | function createChainedFunction(one, two) {
  function bindAutoBindMethod (line 38673) | function bindAutoBindMethod(component, method) {
  function bindAutoBindMethods (line 38710) | function bindAutoBindMethods(component) {
  function is (line 39142) | function is(x, y) {
  function PropTypeError (line 39162) | function PropTypeError(message) {
  function createChainableTypeChecker (line 39169) | function createChainableTypeChecker(validate) {
  function createPrimitiveTypeChecker (line 39205) | function createPrimitiveTypeChecker(expectedType) {
  function createAnyTypeChecker (line 39223) | function createAnyTypeChecker() {
  function createArrayOfTypeChecker (line 39227) | function createArrayOfTypeChecker(typeChecker) {
  function createElementTypeChecker (line 39249) | function createElementTypeChecker() {
  function createInstanceTypeChecker (line 39262) | function createInstanceTypeChecker(expectedClass) {
  function createEnumTypeChecker (line 39275) | function createEnumTypeChecker(expectedValues) {
  function createObjectOfTypeChecker (line 39296) | function createObjectOfTypeChecker(typeChecker) {
  function createUnionTypeChecker (line 39320) | function createUnionTypeChecker(arrayOfTypeCheckers) {
  function createNodeChecker (line 39340) | function createNodeChecker() {
  function createShapeTypeChecker (line 39351) | function createShapeTypeChecker(shapeTypes) {
  function isNode (line 39374) | function isNode(propValue) {
  function isSymbol (line 39421) | function isSymbol(propType, propValue) {
  function getPropType (line 39441) | function getPropType(propValue) {
  function getPreciseType (line 39460) | function getPreciseType(propValue) {
  function getClassName (line 39473) | function getClassName(propValue) {
  function ReactPureComponent (line 39514) | function ReactPureComponent(props, context, updater) {
  function ComponentDummy (line 39524) | function ComponentDummy() {}
  function checkReactTypeSpec (line 39613) | function checkReactTypeSpec(typeSpecs, values, location, componentName, ...
  function onlyChild (line 39697) | function onlyChild(children) {
  function getComponentKey (line 39759) | function getComponentKey(component, index) {
  function traverseAllChildrenImpl (line 39778) | function traverseAllChildrenImpl(children, nameSoFar, callback, traverse...
  function traverseAllChildren (line 39880) | function traverseAllChildren(children, callback, traverseContext) {
  function Url (line 39995) | function Url() {
  function urlParse (line 40063) | function urlParse(url, parseQueryString, slashesDenoteHost) {
  function urlFormat (line 40333) | function urlFormat(obj) {
  function urlResolve (line 40399) | function urlResolve(source, relative) {
  function urlResolveObject (line 40407) | function urlResolveObject(source, relative) {
  function normalizeName (line 40791) | function normalizeName(name) {
  function normalizeValue (line 40801) | function normalizeValue(value) {
  function iteratorFor (line 40809) | function iteratorFor(items) {
  function Headers (line 40826) | function Headers(headers) {
  function consumed (line 40895) | function consumed(body) {
  function fileReaderReady (line 40902) | function fileReaderReady(reader) {
  function readBlobAsArrayBuffer (line 40913) | function readBlobAsArrayBuffer(blob) {
  function readBlobAsText (line 40920) | function readBlobAsText(blob) {
  function readArrayBufferAsText (line 40927) | function readArrayBufferAsText(buf) {
  function bufferClone (line 40937) | function bufferClone(buf) {
  function Body (line 40947) | function Body() {
  function normalizeMethod (line 41043) | function normalizeMethod(method) {
  function Request (line 41048) | function Request(input, options) {
  function decode (line 41089) | function decode(body) {
  function parseHeaders (line 41102) | function parseHeaders(rawHeaders) {
  function Response (line 41117) | function Response(bodyInit, options) {

FILE: packages/react-error-overlay/fixtures/bundle_u.mjs
  function hotDisposeChunk (line 2) | function hotDisposeChunk(chunkId) {
  function hotDownloadUpdateChunk (line 12) | function hotDownloadUpdateChunk(chunkId) { // eslint-disable-line no-unu...
  function hotDownloadManifest (line 21) | function hotDownloadManifest() { // eslint-disable-line no-unused-vars
  function hotCreateRequire (line 68) | function hotCreateRequire(moduleId) { // eslint-disable-line no-unused-vars
  function hotCreateModule (line 130) | function hotCreateModule(moduleId) { // eslint-disable-line no-unused-vars
  function hotSetStatus (line 198) | function hotSetStatus(newStatus) {
  function toModuleId (line 215) | function toModuleId(id) {
  function hotCheck (line 220) | function hotCheck(apply) {
  function hotAddUpdateChunk (line 255) | function hotAddUpdateChunk(chunkId, moreModules) { // eslint-disable-lin...
  function hotEnsureUpdateChunk (line 269) | function hotEnsureUpdateChunk(chunkId) {
  function hotUpdateDownloaded (line 279) | function hotUpdateDownloaded() {
  function hotApply (line 301) | function hotApply(options) {
  function __webpack_require__ (line 643) | function __webpack_require__(moduleId) {
  function invariant (line 755) | function invariant(condition, format, a, b, c, d, e, f) {
  function reactProdInvariant (line 918) | function reactProdInvariant(code) {
  function toObject (line 992) | function toObject(val) {
  function shouldUseNative (line 1000) | function shouldUseNative() {
  function useColors (line 1119) | function useColors() {
  function formatArgs (line 1158) | function formatArgs(args) {
  function log (line 1198) | function log() {
  function save (line 1213) | function save(namespaces) {
  function load (line 1230) | function load() {
  function localstorage (line 1261) | function localstorage() {
  function shouldPrecacheNode (line 1306) | function shouldPrecacheNode(node, nodeID) {
  function getRenderedHostOrTextFromComponent (line 1317) | function getRenderedHostOrTextFromComponent(component) {
  function precacheNode (line 1329) | function precacheNode(inst, node) {
  function uncacheNode (line 1335) | function uncacheNode(inst) {
  function precacheChildNodes (line 1357) | function precacheChildNodes(inst, node) {
  function getClosestInstanceFromNode (line 1390) | function getClosestInstanceFromNode(node) {
  function getInstanceFromNode (line 1424) | function getInstanceFromNode(node) {
  function getNodeFromInstance (line 1437) | function getNodeFromInstance(inst) {
  function EventEmitter (line 1536) | function EventEmitter() {
  function g (line 1554) | function g() {
  function isNative (line 1619) | function isNative(fn) {
  function purgeDeep (line 1728) | function purgeDeep(id) {
  function describeComponentFrame (line 1738) | function describeComponentFrame(name, source, ownerName) {
  function getDisplayName (line 1742) | function getDisplayName(element) {
  function describeID (line 1754) | function describeID(id) {
  function makeEmptyFunction (line 2049) | function makeEmptyFunction(arg) {
  function ensureInjected (line 2115) | function ensureInjected() {
  function ReactUpdatesFlushTransaction (line 2149) | function ReactUpdatesFlushTransaction() {
  function batchedUpdates (line 2179) | function batchedUpdates(callback, a, b, c, d, e) {
  function mountOrderComparator (line 2191) | function mountOrderComparator(c1, c2) {
  function runBatchedUpdates (line 2195) | function runBatchedUpdates(transaction) {
  function enqueueUpdate (line 2274) | function enqueueUpdate(component) {
  function asap (line 2298) | function asap(callback, context) {
  function runInContext (line 2414) | function runInContext(context, exports) {
  function defaultSetTimout (line 3312) | function defaultSetTimout() {
  function defaultClearTimeout (line 3315) | function defaultClearTimeout () {
  function runTimeout (line 3338) | function runTimeout(fun) {
  function runClearTimeout (line 3363) | function runClearTimeout(marker) {
  function cleanUpNextTick (line 3395) | function cleanUpNextTick() {
  function drainQueue (line 3410) | function drainQueue() {
  function Item (line 3448) | function Item(fun, array) {
  function noop (line 3462) | function noop() {}
  function SyntheticEvent (line 3554) | function SyntheticEvent(dispatchConfig, targetInst, nativeEvent, nativeE...
  function getPooledWarningPropertyDefinition (line 3734) | function getPooledWarningPropertyDefinition(propName, getVal) {
  function checkMask (line 3873) | function checkMask(value, bitmask) {
  function hasValidRef (line 4230) | function hasValidRef(config) {
  function hasValidKey (line 4242) | function hasValidKey(config) {
  function defineKeyPropWarningGetter (line 4254) | function defineKeyPropWarningGetter(props, displayName) {
  function defineRefPropWarningGetter (line 4268) | function defineRefPropWarningGetter(props, displayName) {
  function reactProdInvariant (line 4569) | function reactProdInvariant(code) {
  function createAjaxSender (line 4611) | function createAjaxSender(AjaxObject) {
  function AjaxBasedTransport (line 4641) | function AjaxBasedTransport(transUrl, urlSuffix, Receiver, AjaxObject) {
  function insertTreeChildren (line 4735) | function insertTreeChildren(tree) {
  function replaceChildWithTree (line 4768) | function replaceChildWithTree(oldNode, newTree) {
  function queueChild (line 4773) | function queueChild(parentTree, childTree) {
  function queueHTML (line 4781) | function queueHTML(tree, html) {
  function queueText (line 4789) | function queueText(tree, text) {
  function toString (line 4797) | function toString() {
  function DOMLazyTree (line 4801) | function DOMLazyTree(node) {
  function attachRefs (line 4850) | function attachRefs() {
  function XHRLocalObject (line 5112) | function XHRLocalObject(method, url, payload /*, opts */) {
  function getArg (line 5390) | function getArg(aArgs, aName, aDefaultValue) {
  function urlParse (line 5404) | function urlParse(aUrl) {
  function urlGenerate (line 5419) | function urlGenerate(aParsedUrl) {
  function normalize (line 5452) | function normalize(aPath) {
  function join (line 5513) | function join(aRoot, aPath) {
  function relative (line 5566) | function relative(aRoot, aPath) {
  function identity (line 5605) | function identity (s) {
  function toSetString (line 5618) | function toSetString(aStr) {
  function fromSetString (line 5627) | function fromSetString(aStr) {
  function isProtoString (line 5636) | function isProtoString(s) {
  function compareByOriginalPositions (line 5676) | function compareByOriginalPositions(mappingA, mappingB, onlyCompareOrigi...
  function compareByGeneratedPositionsDeflated (line 5715) | function compareByGeneratedPositionsDeflated(mappingA, mappingB, onlyCom...
  function strcmp (line 5745) | function strcmp(aStr1, aStr2) {
  function compareByGeneratedPositionsInflated (line 5761) | function compareByGeneratedPositionsInflated(mappingA, mappingB) {
  function isInteractive (line 5894) | function isInteractive(tag) {
  function shouldPreventMouseEvent (line 5898) | function shouldPreventMouseEvent(name, type, props) {
  function listenerAtPhase (line 6145) | function listenerAtPhase(inst, event, propagationPhase) {
  function accumulateDirectionalDispatches (line 6156) | function accumulateDirectionalDispatches(inst, phase, event) {
  function accumulateTwoPhaseDispatchesSingle (line 6174) | function accumulateTwoPhaseDispatchesSingle(event) {
  function accumulateTwoPhaseDispatchesSingleSkipTarget (line 6183) | function accumulateTwoPhaseDispatchesSingleSkipTarget(event) {
  function accumulateDispatches (line 6196) | function accumulateDispatches(inst, ignoredDirection, event) {
  function accumulateDirectDispatchesSingle (line 6212) | function accumulateDirectDispatchesSingle(event) {
  function accumulateTwoPhaseDispatches (line 6218) | function accumulateTwoPhaseDispatches(events) {
  function accumulateTwoPhaseDispatchesSkipTarget (line 6222) | function accumulateTwoPhaseDispatchesSkipTarget(events) {
  function accumulateEnterLeaveDispatches (line 6226) | function accumulateEnterLeaveDispatches(leave, enter, from, to) {
  function accumulateDirectDispatches (line 6230) | function accumulateDirectDispatches(events) {
  function SyntheticUIEvent (line 6373) | function SyntheticUIEvent(dispatchConfig, dispatchMarker, nativeEvent, n...
  function XhrReceiver (line 6402) | function XhrReceiver(url, AjaxObject) {
  function XHRCorsObject (line 6479) | function XHRCorsObject(method, url, payload, opts) {
  function defineProperties (line 6506) | function defineProperties(target, props) { for (var i = 0; i < props.len...
  function _classCallCheck (line 6508) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
  function StackFrame (line 6533) | function StackFrame() {
  function recomputePluginOrdering (line 6656) | function recomputePluginOrdering() {
  function publishEventForPlugin (line 6685) | function publishEventForPlugin(dispatchConfig, pluginModule, eventName) {
  function publishRegistrationName (line 6713) | function publishRegistrationName(registrationName, pluginModule, eventNa...
  function getListeningForDocument (line 7045) | function getListeningForDocument(mountAt) {
  function SyntheticMouseEvent (line 7291) | function SyntheticMouseEvent(dispatchConfig, dispatchMarker, nativeEvent...
  function escapeHtml (line 7597) | function escapeHtml(string) {
  function escapeTextContentForBrowser (line 7655) | function escapeTextContentForBrowser(text) {
  function Event (line 7799) | function Event(eventType) {
  function IframeWrapTransport (line 7840) | function IframeWrapTransport(transUrl, baseUrl) {
  function XDRObject (line 7895) | function XDRObject(method, url, payload) {
  function extractProtocol (line 8073) | function extractProtocol(address) {
  function resolve (line 8091) | function resolve(relative, base) {
  function URL (line 8128) | function URL(address, location, parser) {
  function set (line 8269) | function set(part, value, fn) {
  function toString (line 8350) | function toString(stringify) {
  function is (line 8460) | function is(x, y) {
  function shallowEqual (line 8478) | function shallowEqual(objA, objB) {
  function getNodeAfter (line 8537) | function getNodeAfter(parentNode, node) {
  function insertLazyTreeChildAt (line 8561) | function insertLazyTreeChildAt(parentNode, childTree, referenceNode) {
  function moveChild (line 8565) | function moveChild(parentNode, childNode, referenceNode) {
  function removeChild (line 8573) | function removeChild(parentNode, childNode) {
  function moveDelimitedText (line 8583) | function moveDelimitedText(parentNode, openingComment, closingComment, r...
  function removeDelimitedText (line 8595) | function removeDelimitedText(parentNode, startNode, closingComment) {
  function replaceDelimitedText (line 8607) | function replaceDelimitedText(openingComment, closingComment, stringText) {
  function isEndish (line 8825) | function isEndish(topLevelType) {
  function isMoveish (line 8829) | function isMoveish(topLevelType) {
  function isStartish (line 8832) | function isStartish(topLevelType) {
  function executeDispatch (line 8859) | function executeDispatch(event, simulated, listener, inst) {
  function executeDispatchesInOrder (line 8873) | function executeDispatchesInOrder(event, simulated) {
  function executeDispatchesInOrderStopAtTrueImpl (line 8901) | function executeDispatchesInOrderStopAtTrueImpl(event) {
  function executeDispatchesInOrderStopAtTrue (line 8928) | function executeDispatchesInOrderStopAtTrue(event) {
  function executeDirectDispatch (line 8944) | function executeDirectDispatch(event) {
  function hasDispatches (line 8963) | function hasDispatches(event) {
  function escape (line 9037) | function escape(key) {
  function unescape (line 9056) | function unescape(key) {
  function _assertSingleLink (line 9116) | function _assertSingleLink(inputProps) {
  function _assertValueLink (line 9119) | function _assertValueLink(inputProps) {
  function _assertCheckedLink (line 9124) | function _assertCheckedLink(inputProps) {
  function getDeclarationErrorAddendum (line 9146) | function getDeclarationErrorAddendum(owner) {
  function invokeGuardedCallback (line 9310) | function invokeGuardedCallback(name, func, a) {
  function enqueueUpdate (line 9396) | function enqueueUpdate(internalInstance) {
  function formatUnexpectedArgument (line 9400) | function formatUnexpectedArgument(arg) {
  function getInternalInstanceReadyForUpdate (line 9413) | function getInternalInstanceReadyForUpdate(publicInstance, callerName) {
  function getEventCharCode (line 9675) | function getEventCharCode(nativeEvent) {
  function modifierStateGetter (line 9739) | function modifierStateGetter(keyArg) {
  function getEventModifierState (line 9749) | function getEventModifierState(nativeEvent) {
  function getEventTarget (line 9785) | function getEventTarget(nativeEvent) {
  function isEventSupported (line 9846) | function isEventSupported(eventNameSuffix, capture) {
  function shouldUpdateReactComponent (line 9904) | function shouldUpdateReactComponent(prevElement, nextElement) {
  function ReactComponent (line 10348) | function ReactComponent(props, context, updater) {
  function warnNoop (line 10466) | function warnNoop(publicInstance, callerName) {
  function getIteratorFn (line 10661) | function getIteratorFn(maybeIterable) {
  function ansiHTML (line 10774) | function ansiHTML(txt) {
  function isDecimalDigit (line 10886) | function isDecimalDigit(ch) {
  function isHexDigit (line 10890) | function isHexDigit(ch) {
  function isOctalDigit (line 10896) | function isOctalDigit(ch) {
  function isWhiteSpace (line 10910) | function isWhiteSpace(ch) {
  function isLineTerminator (line 10917) | function isLineTerminator(ch) {
  function fromCodePoint (line 10923) | function fromCodePoint(cp) {
  function isIdentifierStartES5 (line 10947) | function isIdentifierStartES5(ch) {
  function isIdentifierPartES5 (line 10951) | function isIdentifierPartES5(ch) {
  function isIdentifierStartES6 (line 10955) | function isIdentifierStartES6(ch) {
  function isIdentifierPartES6 (line 10959) | function isIdentifierPartES6(ch) {
  function Html5Entities (line 10997) | function Html5Entities() {}
  function createIndexes (line 11152) | function createIndexes(alphaIndex, charIndex) {
  function EventTarget (line 11195) | function EventTarget() {
  function InfoAjax (line 11276) | function InfoAjax(url, AjaxObject) {
  function InfoReceiverIframe (line 11333) | function InfoReceiverIframe(transUrl) {
  function AbstractXHRObject (line 11406) | function AbstractXHRObject(method, url, payload, opts) {
  function EventSourceTransport (line 11620) | function EventSourceTransport(transUrl) {
  function HtmlFileTransport (line 11658) | function HtmlFileTransport(transUrl) {
  function IframeTransport (line 11712) | function IframeTransport(transport, transUrl, baseUrl) {
  function SenderReceiver (line 11853) | function SenderReceiver(transUrl, urlSuffix, senderFunc, Receiver, AjaxO...
  function XdrStreamingTransport (line 11909) | function XdrStreamingTransport(transUrl) {
  function XhrPollingTransport (line 11950) | function XhrPollingTransport(transUrl) {
  function ArraySet (line 12013) | function ArraySet() {
  function toVLQSigned (line 12180) | function toVLQSigned(aValue) {
  function fromVLQSigned (line 12192) | function fromVLQSigned(aValue) {
  function SourceMapGenerator (line 12283) | function SourceMapGenerator(aArgs) {
  function focusNode (line 12892) | function focusNode(node) {
  function getActiveElement (line 12935) | function getActiveElement() /*?DOMElement*/{
  function noop (line 12962) | function noop() {}
  function getThen (line 12983) | function getThen(obj) {
  function tryCallOne (line 12992) | function tryCallOne(fn, a) {
  function tryCallTwo (line 13000) | function tryCallTwo(fn, a, b) {
  function Promise (line 13011) | function Promise(fn) {
  function safeThen (line 13038) | function safeThen(self, onFulfilled, onRejected) {
  function handle (line 13045) | function handle(self, deferred) {
  function handleResolved (line 13069) | function handleResolved(self, deferred) {
  function resolve (line 13088) | function resolve(self, newValue) {
  function reject (line 13122) | function reject(self, newValue) {
  function finale (line 13130) | function finale(self) {
  function Handler (line 13143) | function Handler(onFulfilled, onRejected, promise){
  function doResolve (line 13155) | function doResolve(fn, promise) {
  function prefixKey (line 13244) | function prefixKey(prefix, key) {
  function _classCallCheck (line 13356) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
  function CallbackQueue (line 13375) | function CallbackQueue(arg) {
  function isAttributeNameSafe (line 13493) | function isAttributeNameSafe(attributeName) {
  function shouldIgnoreValue (line 13509) | function shouldIgnoreValue(propertyInfo, value) {
  function updateOptionsIfPendingUpdateAndMounted (line 13768) | function updateOptionsIfPendingUpdateAndMounted() {
  function getDeclarationErrorAddendum (line 13781) | function getDeclarationErrorAddendum(owner) {
  function checkSelectPropTypes (line 13797) | function checkSelectPropTypes(inst, props) {
  function updateOptions (line 13826) | function updateOptions(inst, multiple, propValue) {
  function _handleChange (line 13932) | function _handleChange(event) {
  function createInternalComponent (line 14065) | function createInternalComponent(element) {
  function createInstanceForText (line 14074) | function createInstanceForText(text) {
  function isTextComponent (line 14082) | function isTextComponent(component) {
  function isInDocument (line 14123) | function isInDocument(node) {
  function firstDifferenceIndex (line 14291) | function firstDifferenceIndex(string1, string2) {
  function getReactRootElementInContainer (line 14306) | function getReactRootElementInContainer(container) {
  function internalGetID (line 14318) | function internalGetID(node) {
  function mountComponentIntoNode (line 14333) | function mountComponentIntoNode(wrapperInstance, container, transaction,...
  function batchedMountComponentIntoNode (line 14360) | function batchedMountComponentIntoNode(componentInstance, container, sho...
  function unmountComponentFromNode (line 14377) | function unmountComponentFromNode(instance, container, safely) {
  function hasNonRootReactChild (line 14406) | function hasNonRootReactChild(container) {
  function nodeIsRenderedByOtherInstance (line 14422) | function nodeIsRenderedByOtherInstance(container) {
  function isValidContainer (line 14434) | function isValidContainer(node) {
  function isReactNode (line 14445) | function isReactNode(node) {
  function getHostRootInstanceInContainer (line 14449) | function getHostRootInstanceInContainer(container) {
  function getTopLevelWrapperInContainer (line 14455) | function getTopLevelWrapperInContainer(container) {
  function accumulateInto (line 14931) | function accumulateInto(current, next) {
  function forEachAccumulated (line 14990) | function forEachAccumulated(arr, cb, scope) {
  function getHostComponentFromComposite (line 15024) | function getHostComponentFromComposite(inst) {
  function getTextContentAccessor (line 15072) | function getTextContentAccessor() {
  function getDeclarationErrorAddendum (line 15124) | function getDeclarationErrorAddendum(owner) {
  function isInternalComponentType (line 15141) | function isInternalComponentType(type) {
  function instantiateReactComponent (line 15153) | function instantiateReactComponent(node, shouldHaveDebugID) {
  function isTextInputElement (line 15266) | function isTextInputElement(elem) {
  function getComponentKey (line 15399) | function getComponentKey(component, index) {
  function traverseAllChildrenImpl (line 15418) | function traverseAllChildrenImpl(children, nameSoFar, callback, traverse...
  function traverseAllChildren (line 15520) | function traverseAllChildren(children, callback, traverseContext) {
  function getDeclarationErrorAddendum (line 15599) | function getDeclarationErrorAddendum() {
  function getCurrentComponentErrorInfo (line 15616) | function getCurrentComponentErrorInfo(parentType) {
  function validateExplicitKey (line 15639) | function validateExplicitKey(element, parentType) {
  function validateChildKeys (line 15674) | function validateChildKeys(node, parentType) {
  function validatePropTypes (line 15713) | function validatePropTypes(element) {
  function addStylesToDom (line 15916) | function addStylesToDom(styles, options) {
  function listToStyles (line 15938) | function listToStyles(list) {
  function insertStyleElement (line 15956) | function insertStyleElement(options, styleElement) {
  function removeStyleElement (line 15975) | function removeStyleElement(styleElement) {
  function createStyleElement (line 15983) | function createStyleElement(options) {
  function createLinkElement (line 15990) | function createLinkElement(options) {
  function addStyle (line 15997) | function addStyle(obj, options) {
  function applyToSingletonTag (line 16048) | function applyToSingletonTag(styleElement, index, remove, obj) {
  function applyToTag (line 16065) | function applyToTag(styleElement, obj) {
  function updateLink (line 16083) | function updateLink(linkElement, obj) {
  function getHead (line 16139) | function getHead() {
  function injectCss (line 16146) | function injectCss(css) {
  function applyStyles (line 16337) | function applyStyles(element, styles) {
  function consumeEvent (line 16357) | function consumeEvent(e) {
  function accessify (line 16362) | function accessify(node) {
  function renderAdditional (line 16373) | function renderAdditional() {
  function removeNextBr (line 16410) | function removeNextBr(parent, component) {
  function absolutifyCode (line 16419) | function absolutifyCode(component) {
  function sourceCodePre (line 16431) | function sourceCodePre(sourceLines, lineNum, columnNum) {
  function createHint (line 16491) | function createHint(hint) {
  function hintsDiv (line 16498) | function hintsDiv() {
  function frameDiv (line 16511) | function frameDiv(functionName, url, internalUrl) {
  function getGroupToggle (line 16548) | function getGroupToggle(omitsCount, omitBundle) {
  function insertBeforeBundle (line 16578) | function insertBeforeBundle(parent, omitsCount, omitBundle, actionElemen...
  function traceFrame (line 16601) | function traceFrame(
  function lazyFrame (line 16691) | function lazyFrame(parent, factory, lIndex) {
  function traceDiv (line 16732) | function traceDiv(resolvedFrames) {
  function footer (line 16765) | function footer() {
  function render (line 16782) | function render(error, name, message, resolvedFrames) {
  function dispose (line 16827) | function dispose() {
  function unmount (line 16838) | function unmount() {
  function isInternalFile (line 16844) | function isInternalFile(url, sourceFileName) {
  function renderError (line 16851) | function renderError(index) {
  function crash (line 16870) | function crash(error) {
  function switchError (line 16920) | function switchError(offset) {
  function createOverlayIframe (line 17056) | function createOverlayIframe(onIframeLoad) {
  function addOverlayDivTo (line 17073) | function addOverlayDivTo(iframe) {
  function ensureOverlayDivExists (line 17100) | function ensureOverlayDivExists(onOverlayDivReady) {
  function showErrorOverlay (line 17129) | function showErrorOverlay(message) {
  function destroyErrorOverlay (line 17139) | function destroyErrorOverlay() {
  function clearOutdatedErrors (line 17177) | function clearOutdatedErrors() {
  function handleSuccess (line 17185) | function handleSuccess() {
  function handleWarnings (line 17200) | function handleWarnings(warnings) {
  function handleErrors (line 17229) | function handleErrors(errors) {
  function handleAvailableHash (line 17254) | function handleAvailableHash(hash) {
  function isUpdateAvailable (line 17286) | function isUpdateAvailable() {
  function canApplyUpdates (line 17294) | function canApplyUpdates() {
  function tryApplyUpdates (line 17299) | function tryApplyUpdates(onHotUpdateSuccess) {
  function _interopRequireDefault (line 17410) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
  function isLikelyASyntaxError (line 17450) | function isLikelyASyntaxError(message) {
  function formatMessage (line 17455) | function formatMessage(message) {
  function formatWebpackMessages (line 17544) | function formatWebpackMessages(json) {
  function defineProperties (line 17581) | function defineProperties(target, props) { for (var i = 0; i < props.len...
  function _classCallCheck (line 17583) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
  function Anser (line 17705) | function Anser() {
  function assembleStyles (line 18175) | function assembleStyles () {
  function _interopRequireDefault (line 18320) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
  function getDefs (line 18322) | function getDefs(chalk) {
  function getTokenType (line 18345) | function getTokenType(match) {
  function highlight (line 18373) | function highlight(defs, text) {
  function Chalk (line 18412) | function Chalk(options) {
  function build (line 18440) | function build(_styles) {
  function applyStyle (line 18455) | function applyStyle() {
  function init (line 18498) | function init() {
  function selectColor (line 18574) | function selectColor(namespace) {
  function createDebug (line 18593) | function createDebug(namespace) {
  function enable (line 18668) | function enable(namespaces) {
  function disable (line 18694) | function disable() {
  function enabled (line 18706) | function enabled(name) {
  function coerce (line 18729) | function coerce(val) {
  function isExpression (line 18794) | function isExpression(node) {
  function isIterationStatement (line 18818) | function isIterationStatement(node) {
  function isStatement (line 18830) | function isStatement(node) {
  function isSourceElement (line 18856) | function isSourceElement(node) {
  function trailingStatement (line 18860) | function trailingStatement(node) {
  function isProblematicIfStatement (line 18878) | function isProblematicIfStatement(node) {
  function isStrictModeReservedWordES6 (line 18951) | function isStrictModeReservedWordES6(id) {
  function isKeywordES5 (line 18967) | function isKeywordES5(id, strict) {
  function isKeywordES6 (line 18975) | function isKeywordES6(id, strict) {
  function isReservedWordES5 (line 19006) | function isReservedWordES5(id, strict) {
  function isReservedWordES6 (line 19010) | function isReservedWordES6(id, strict) {
  function isRestrictedWord (line 19014) | function isRestrictedWord(id) {
  function isIdentifierNameES5 (line 19018) | function isIdentifierNameES5(id) {
  function decodeUtf16 (line 19037) | function decodeUtf16(lead, trail) {
  function isIdentifierNameES6 (line 19041) | function isIdentifierNameES6(id) {
  function isIdentifierES5 (line 19066) | function isIdentifierES5(id, strict) {
  function isIdentifierES6 (line 19070) | function isIdentifierES6(id, strict) {
  function Html4Entities (line 19194) | function Html4Entities() {}
  function XmlEntities (line 19365) | function XmlEntities() {}
  function parse (line 19574) | function parse(str) {
  function fmtShort (line 19633) | function fmtShort(ms) {
  function fmtLong (line 19657) | function fmtLong(ms) {
  function plural (line 19669) | function plural(ms, n, name) {
  function querystring (line 19701) | function querystring(query) {
  function querystringify (line 19727) | function querystringify(obj, prefix) {
  function wrap (line 19842) | function wrap(innerFn, outerFn, self, tryLocsList) {
  function tryCatch (line 19866) | function tryCatch(fn, obj, arg) {
  function Generator (line 19887) | function Generator() {}
  function GeneratorFunction (line 19888) | function GeneratorFunction() {}
  function GeneratorFunctionPrototype (line 19889) | function GeneratorFunctionPrototype() {}
  function defineIteratorMethods (line 19917) | function defineIteratorMethods(prototype) {
  function AsyncIterator (line 19956) | function AsyncIterator(generator) {
  function makeInvokeMethod (line 20053) | function makeInvokeMethod(innerFn, self, context) {
  function maybeInvokeDelegate (line 20135) | function maybeInvokeDelegate(delegate, context) {
  function pushTryEntry (line 20223) | function pushTryEntry(locs) {
  function resetTryEntry (line 20238) | function resetTryEntry(entry) {
  function Context (line 20245) | function Context(tryLocsList) {
  function values (line 20281) | function values(iterable) {
  function doneResult (line 20317) | function doneResult() {
  function handle (line 20368) | function handle(loc, caught) {
  function settle (line 20596) | function settle(val) {
  function CloseEvent (line 20657) | function CloseEvent() {
  function TransportMessageEvent (line 20686) | function TransportMessageEvent(data) {
  function FacadeJS (line 20713) | function FacadeJS(transport) {
  function InfoIframe (line 20875) | function InfoIframe(baseUrl, url) {
  function InfoReceiver (line 20960) | function InfoReceiver(baseUrl, urlInfo) {
  function SockJS (line 21074) | function SockJS(url, protocols, options) {
  function userSetCode (line 21169) | function userSetCode(code) {
  function toInteger (line 21512) | function toInteger(num) {
  function ToUint32 (line 21522) | function ToUint32(x) {
  function Empty (line 21534) | function Empty() {}
  function JsonPTransport (line 21970) | function JsonPTransport(transUrl) {
  function BufferedSender (line 22012) | function BufferedSender(url, sender) {
  function Polling (line 22111) | function Polling(Receiver, receiveUrl, AjaxObject) {
  function EventSourceReceiver (line 22181) | function EventSourceReceiver(url) {
  function HtmlfileReceiver (line 22258) | function HtmlfileReceiver(url) {
  function JsonpReceiver (line 22359) | function JsonpReceiver(url) {
  function createIframe (line 22553) | function createIframe(id) {
  function createForm (line 22565) | function createForm() {
  function XHRFake (line 22658) | function XHRFake(/* method, url, payload, opts */) {
  function WebSocketTransport (line 22702) | function WebSocketTransport(transUrl, ignore, options) {
  function XdrPollingTransport (line 22808) | function XdrPollingTransport(transUrl) {
  function XhrStreamingTransport (line 22844) | function XhrStreamingTransport(transUrl) {
  function recursiveSearch (line 23173) | function recursiveSearch(aLow, aHigh, aNeedle, aHaystack, aCompare, aBia...
  function generatedPositionAfter (line 23285) | function generatedPositionAfter(mappingA, mappingB) {
  function MappingList (line 23300) | function MappingList() {
  function swap (line 23389) | function swap(ary, x, y) {
  function randomIntInRange (line 23403) | function randomIntInRange(low, high) {
  function doQuickSort (line 23419) | function doQuickSort(ary, comparator, p, r) {
  function SourceMapConsumer (line 23500) | function SourceMapConsumer(aSourceMap) {
  function BasicSourceMapConsumer (line 23768) | function BasicSourceMapConsumer(aSourceMap) {
  function Mapping (line 23894) | function Mapping() {
  function IndexedSourceMapConsumer (line 24309) | function IndexedSourceMapConsumer(aSourceMap) {
  function SourceNode (line 24614) | function SourceNode(aLine, aColumn, aSource, aChunks, aName) {
  function addMappingWithCode (line 24723) | function addMappingWithCode(mapping, code) {
  function _interopRequireDefault (line 25134) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
  function _asyncToGenerator (line 25136) | function _asyncToGenerator(fn) { return function () { var gen = fn.apply...
  function _interopRequireDefault (line 25162) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
  function _toConsumableArray (line 25164) | function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i ...
  function extractLocation (line 25168) | function extractLocation(token) {
  function parseStack (line 25181) | function parseStack(stack) {
  function parseError (line 25215) | function parseError(error) {
  function _interopRequireDefault (line 25360) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
  function _asyncToGenerator (line 25362) | function _asyncToGenerator(fn) { return function () { var gen = fn.apply...
  function getLinesAround (line 25392) | function getLinesAround(line, count, lines) {
  function defineProperties (line 25426) | function defineProperties(target, props) { for (var i = 0; i < props.len...
  function _interopRequireDefault (line 25501) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
  function _classCallCheck (line 25503) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
  function _asyncToGenerator (line 25505) | function _asyncToGenerator(fn) { return function () { var gen = fn.apply...
  function extractSourceMapUrl (line 25507) | function extractSourceMapUrl(fileUri, fileContents) {
  function SourceMap (line 25523) | function SourceMap(sourceMap) {
  function rawAsap (line 25743) | function rawAsap(task) {
  function flush (line 25775) | function flush() {
  function makeRequestCallFromMutationObserver (line 25869) | function makeRequestCallFromMutationObserver(callback) {
  function makeRequestCallFromTimer (line 25920) | function makeRequestCallFromTimer(callback) {
  function defineProperties (line 25973) | function defineProperties(target, props) { for (var i = 0; i < props.len...
  function _interopRequireDefault (line 25989) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
  function _classCallCheck (line 25991) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
  function _possibleConstructorReturn (line 25993) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
  function _inherits (line 25995) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
  function App (line 26000) | function App() {
  function camelize (line 26116) | function camelize(string) {
  function camelizeStyleName (line 26168) | function camelizeStyleName(string) {
  function containsNode (line 26204) | function containsNode(outerNode, innerNode) {
  function toArray (line 26258) | function toArray(obj) {
  function hasArrayNature (line 26306) | function hasArrayNature(obj) {
  function createArrayFromMixed (line 26349) | function createArrayFromMixed(obj) {
  function getNodeName (line 26408) | function getNodeName(markup) {
  function createNodesFromMarkup (line 26423) | function createNodesFromMarkup(markup, handleScript) {
  function getMarkupWrap (line 26542) | function getMarkupWrap(nodeName) {
  function getUnboundedScrollPosition (line 26594) | function getUnboundedScrollPosition(scrollable) {
  function hyphenate (line 26646) | function hyphenate(string) {
  function hyphenateStyleName (line 26695) | function hyphenateStyleName(string) {
  function isNode (line 26728) | function isNode(object) {
  function isTextNode (line 26763) | function isTextNode(object) {
  function memoizeStringOnly (line 26797) | function memoizeStringOnly(callback) {
  function normalizeArray (line 26931) | function normalizeArray(parts, allowAboveRoot) {
  function trim (line 27040) | function trim(arr) {
  function filter (line 27113) | function filter (xs, f) {
  function valuePromise (line 27160) | function valuePromise(value) {
  function res (line 27197) | function res(i, val) {
  function disable (line 27274) | function disable() {
  function enable (line 27281) | function enable(options) {
  function logError (line 27362) | function logError(id, error) {
  function matchWhitelist (line 27370) | function matchWhitelist(error, list) {
  function error (line 27450) | function error(type) {
  function map (line 27462) | function map(array, fn) {
  function mapDomain (line 27481) | function mapDomain(string, fn) {
  function ucs2decode (line 27510) | function ucs2decode(string) {
  function ucs2encode (line 27544) | function ucs2encode(array) {
  function basicToDigit (line 27566) | function basicToDigit(codePoint) {
  function digitToBasic (line 27590) | function digitToBasic(digit, flag) {
  function adapt (line 27601) | function adapt(delta, numPoints, firstTime) {
  function decode (line 27618) | function decode(input) {
  function encode (line 27719) | function encode(input) {
  function toUnicode (line 27837) | function toUnicode(input) {
  function toASCII (line 27856) | function toASCII(input) {
  function hasOwnProperty (line 27956) | function hasOwnProperty(obj, prop) {
  function map (line 28095) | function map (xs, f) {
  function isPresto (line 28314) | function isPresto() {
  function isKeypressCommand (line 28362) | function isKeypressCommand(nativeEvent) {
  function getCompositionEventType (line 28374) | function getCompositionEventType(topLevelType) {
  function isFallbackCompositionStart (line 28393) | function isFallbackCompositionStart(topLevelType, nativeEvent) {
  function isFallbackCompositionEnd (line 28404) | function isFallbackCompositionEnd(topLevelType, nativeEvent) {
  function getDataFromCustomEvent (line 28432) | function getDataFromCustomEvent(nativeEvent) {
  function extractCompositionEvent (line 28446) | function extractCompositionEvent(topLevelType, targetInst, nativeEvent, ...
  function getNativeBeforeInputChars (line 28498) | function getNativeBeforeInputChars(topLevelType, nativeEvent) {
  function getFallbackBeforeInputChars (line 28552) | function getFallbackBeforeInputChars(topLevelType, nativeEvent) {
  function extractBeforeInputEvent (line 28606) | function extractBeforeInputEvent(topLevelType, targetInst, nativeEvent, ...
  function shouldUseChangeEvent (line 28930) | function shouldUseChangeEvent(elem) {
  function manualDispatchChangeEvent (line 28941) | function manualDispatchChangeEvent(nativeEvent) {
  function runEventInBatch (line 28959) | function runEventInBatch(event) {
  function startWatchingForChangeEventIE8 (line 28964) | function startWatchingForChangeEventIE8(target, targetInst) {
  function stopWatchingForChangeEventIE8 (line 28970) | function stopWatchingForChangeEventIE8() {
  function getTargetInstForChangeEvent (line 28979) | function getTargetInstForChangeEvent(topLevelType, targetInst) {
  function handleEventsForChangeEventIE8 (line 28984) | function handleEventsForChangeEventIE8(topLevelType, target, targetInst) {
  function startWatchingForValueChange (line 29027) | function startWatchingForValueChange(target, targetInst) {
  function stopWatchingForValueChange (line 29047) | function stopWatchingForValueChange() {
  function handlePropertyChange (line 29071) | function handlePropertyChange(nativeEvent) {
  function getTargetInstForInputEvent (line 29087) | function getTargetInstForInputEvent(topLevelType, targetInst) {
  function handleEventsForInputEventIE (line 29095) | function handleEventsForInputEventIE(topLevelType, target, targetInst) {
  function getTargetInstForInputEventIE (line 29118) | function getTargetInstForInputEventIE(topLevelType, targetInst) {
  function shouldUseClickEvent (line 29140) | function shouldUseClickEvent(elem) {
  function getTargetInstForClickEvent (line 29147) | function getTargetInstForClickEvent(topLevelType, targetInst) {
  function FallbackCompositionState (line 29450) | function FallbackCompositionState(root) {
  function instantiateChild (line 29779) | function instantiateChild(childInstances, child, name, selfDebugID) {
  function StatelessComponent (line 29993) | function StatelessComponent(Component) {}
  function warnIfInvalidElement (line 30001) | function warnIfInvalidElement(Component, element) {
  function shouldConstruct (line 30008) | function shouldConstruct(Component) {
  function isPureComponent (line 30012) | function isPureComponent(Component) {
  function measureLifeCyclePerf (line 30017) | function measureLifeCyclePerf(fn, debugID, timerType) {
  function getDeclarationErrorAddendum (line 31050) | function getDeclarationErrorAddendum(internalInstance) {
  function friendlyStringify (line 31063) | function friendlyStringify(obj) {
  function checkAndWarnForMutatedStyle (line 31089) | function checkAndWarnForMutatedStyle(style1, style2, component) {
  function assertValidProps (line 31119) | function assertValidProps(component, props) {
  function enqueuePutListener (line 31139) | function enqueuePutListener(inst, registrationName, listener, transactio...
  function putListener (line 31159) | function putListener() {
  function inputPostMount (line 31164) | function inputPostMount() {
  function textareaPostMount (line 31169) | function textareaPostMount() {
  function optionPostMount (line 31174) | function optionPostMount() {
  function trapBubbledEventsLocal (line 31236) | function trapBubbledEventsLocal() {
  function postUpdateSelectWrapper (line 31277) | function postUpdateSelectWrapper() {
  function validateDangerousTag (line 31323) | function validateDangerousTag(tag) {
  function isCustomComponent (line 31330) | function isCustomComponent(tagName, props) {
  function ReactDOMComponent (line 31350) | function ReactDOMComponent(element) {
  function ReactDOMContainerInfo (line 32013) | function ReactDOMContainerInfo(topLevelWrapper, node) {
  function forceUpdateIfMounted (line 32213) | function forceUpdateIfMounted() {
  function isControlled (line 32220) | function isControlled(props) {
  function _handleChange (line 32411) | function _handleChange(event) {
  function validateProperty (line 32491) | function validateProperty(tagName, name, debugID) {
  function warnInvalidARIAProps (line 32517) | function warnInvalidARIAProps(debugID, element) {
  function handleElement (line 32538) | function handleElement(debugID, element) {
  function handleElement (line 32592) | function handleElement(debugID, element) {
  function flattenChildren (line 32648) | function flattenChildren(children) {
  function isCollapsed (line 32782) | function isCollapsed(anchorNode, anchorOffset, focusNode, focusOffset) {
  function getIEOffsets (line 32800) | function getIEOffsets(node) {
  function getModernOffsets (line 32823) | function getModernOffsets(node) {
  function setIEOffsets (line 32885) | function setIEOffsets(node, offsets) {
  function setModernOffsets (line 32919) | function setModernOffsets(node, offsets) {
  function forceUpdateIfMounted (line 33181) | function forceUpdateIfMounted() {
  function _handleChange (line 33307) | function _handleChange(event) {
  function getLowestCommonAncestor (line 33346) | function getLowestCommonAncestor(instA, instB) {
  function isAncestor (line 33386) | function isAncestor(instA, instB) {
  function getParentInstance (line 33402) | function getParentInstance(inst) {
  function traverseTwoPhase (line 33411) | function traverseTwoPhase(inst, fn, arg) {
  function traverseEnterLeave (line 33433) | function traverseEnterLeave(from, to, fn, argFrom, argTo) {
  function handleElement (line 33563) | function handleElement(debugID, element) {
  function callHook (line 33618) | function callHook(event, fn, context, arg1, arg2, arg3, arg4, arg5) {
  function emitEvent (line 33627) | function emitEvent(event, arg1, arg2, arg3, arg4, arg5) {
  function clearHistory (line 33650) | function clearHistory() {
  function getTreeSnapshot (line 33655) | function getTreeSnapshot(registeredIDs) {
  function resetMeasurements (line 33672) | function resetMeasurements() {
  function checkDebugID (line 33699) | function checkDebugID(debugID) {
  function beginLifeCycleTimer (line 33710) | function beginLifeCycleTimer(debugID, timerType) {
  function endLifeCycleTimer (line 33724) | function endLifeCycleTimer(debugID, timerType) {
  function pauseCurrentLifeCycleTimer (line 33745) | function pauseCurrentLifeCycleTimer() {
  function resumeCurrentLifeCycleTimer (line 33759) | function resumeCurrentLifeCycleTimer() {
  function shouldMark (line 33778) | function shouldMark(debugID) {
  function markBegin (line 33793) | function markBegin(debugID, markType) {
  function markEnd (line 33803) | function markEnd(debugID, markType) {
  function ReactDefaultBatchingStrategyTransaction (line 33998) | function ReactDefaultBatchingStrategyTransaction() {
  function inject (line 34077) | function inject() {
  function runEventQueueInBatch (line 34183) | function runEventQueueInBatch(events) {
  function findParent (line 34240) | function findParent(inst) {
  function TopLevelCallbackBookKeeping (line 34253) | function TopLevelCallbackBookKeeping(topLevelType, nativeEvent) {
  function handleTopLevelImpl (line 34267) | function handleTopLevelImpl(bookKeeping) {
  function scrollValueMonitor (line 34287) | function scrollValueMonitor(cb) {
  function makeInsertMarkup (line 34605) | function makeInsertMarkup(markup, afterNode, toIndex) {
  function makeMove (line 34624) | function makeMove(child, afterNode, toIndex) {
  function makeRemove (line 34642) | function makeRemove(child, node) {
  function makeSetMarkup (line 34660) | function makeSetMarkup(markup) {
  function makeTextContent (line 34678) | function makeTextContent(textContent) {
  function enqueue (line 34694) | function enqueue(queue, update) {
  function processQueue (line 34707) | function processQueue(inst, updateQueue) {
  function isValidOwner (line 35054) | function isValidOwner(object) {
  function ReactReconcileTransaction (line 35282) | function ReactReconcileTransaction(useCreateElement) {
  function attachRef (line 35376) | function attachRef(ref, component, owner) {
  function detachRef (line 35385) | function detachRef(ref, component, owner) {
  function ReactServerRenderingTransaction (line 35499) | function ReactServerRenderingTransaction(renderToStaticMarkup) {
  function _classCallCheck (line 35571) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
  function warnNoop (line 35577) | function warnNoop(publicInstance, callerName) {
  function ReactServerUpdateQueue (line 35593) | function ReactServerUpdateQueue(transaction) {
  function getSelection (line 36095) | function getSelection(node) {
  function constructSelectEvent (line 36126) | function constructSelectEvent(nativeEvent, nativeEventTarget) {
  function getDictionaryKey (line 36316) | function getDictionaryKey(inst) {
  function isInteractive (line 36322) | function isInteractive(tag) {
  function SyntheticAnimationEvent (line 36513) | function SyntheticAnimationEvent(dispatchConfig, dispatchMarker, nativeE...
  function SyntheticClipboardEvent (line 36561) | function SyntheticClipboardEvent(dispatchConfig, dispatchMarker, nativeE...
  function SyntheticCompositionEvent (line 36607) | function SyntheticCompositionEvent(dispatchConfig, dispatchMarker, nativ...
  function SyntheticDragEvent (line 36653) | function SyntheticDragEvent(dispatchConfig, dispatchMarker, nativeEvent,...
  function SyntheticFocusEvent (line 36699) | function SyntheticFocusEvent(dispatchConfig, dispatchMarker, nativeEvent...
  function SyntheticInputEvent (line 36746) | function SyntheticInputEvent(dispatchConfig, dispatchMarker, nativeEvent...
  function SyntheticKeyboardEvent (line 36840) | function SyntheticKeyboardEvent(dispatchConfig, dispatchMarker, nativeEv...
  function SyntheticTouchEvent (line 36895) | function SyntheticTouchEvent(dispatchConfig, dispatchMarker, nativeEvent...
  function SyntheticTransitionEvent (line 36944) | function SyntheticTransitionEvent(dispatchConfig, dispatchMarker, native...
  function SyntheticWheelEvent (line 37008) | function SyntheticWheelEvent(dispatchConfig, dispatchMarker, nativeEvent...
  function adler32 (line 37046) | function adler32(data) {
  function checkReactTypeSpec (line 37125) | function checkReactTypeSpec(typeSpecs, values, location, componentName, ...
  function dangerousStyleValue (line 37206) | function dangerousStyleValue(name, value, component) {
  function findDOMNode (line 37297) | function findDOMNode(componentOrElement) {
  function flattenSingleChildIntoContext (line 37371) | function flattenSingleChildIntoContext(traverseContext, child, name, sel...
  function flattenChildren (line 37395) | function flattenChildren(children, selfDebugID) {
  function getEventKey (line 37495) | function getEventKey(nativeEvent) {
  function getIteratorFn (line 37568) | function getIteratorFn(maybeIterable) {
  function getNextDebugID (line 37602) | function getNextDebugID() {
  function getLeafNode (line 37637) | function getLeafNode(node) {
  function getSiblingNode (line 37651) | function getSiblingNode(node) {
  function getNodeForCharacterOffset (line 37667) | function getNodeForCharacterOffset(root, offset) {
  function makePrefixMap (line 37723) | function makePrefixMap(styleProp, eventName) {
  function getVendorPrefixedEventName (line 37783) | function getVendorPrefixedEventName(eventName) {
  function quoteAttributeValueForBrowser (line 37833) | function quoteAttributeValueForBrowser(value) {
  function escape (line 37895) | function escape(key) {
  function unescape (line 37914) | function unescape(key) {
  function escapeUserProvidedKey (line 38088) | function escapeUserProvidedKey(text) {
  function ForEachBookKeeping (line 38100) | function ForEachBookKeeping(forEachFunction, forEachContext) {
  function forEachSingleChild (line 38112) | function forEachSingleChild(bookKeeping, child, name) {
  function forEachChildren (line 38131) | function forEachChildren(children, forEachFunc, forEachContext) {
  function MapBookKeeping (line 38149) | function MapBookKeeping(mapResult, keyPrefix, mapFunction, mapContext) {
  function mapSingleChildIntoContext (line 38165) | function mapSingleChildIntoContext(bookKeeping, child, childKey) {
  function mapIntoWithKeyPrefixInternal (line 38186) | function mapIntoWithKeyPrefixInternal(children, array, prefix, func, con...
  function mapChildren (line 38209) | function mapChildren(children, func, context) {
  function forEachSingleChildDummy (line 38218) | function forEachSingleChildDummy(traverseContext, child, name) {
  function countChildren (line 38231) | function countChildren(children, context) {
  function toArray (line 38241) | function toArray(children) {
  function identity (line 38295) | function identity(fn) {
  function validateTypeDef (line 38605) | function validateTypeDef(Constructor, typeDef, location) {
  function validateMethodOverride (line 38615) | function validateMethodOverride(isAlreadyDefined, name) {
  function mixSpecIntoComponent (line 38633) | function mixSpecIntoComponent(Constructor, spec) {
  function mixStaticSpecIntoComponent (line 38715) | function mixStaticSpecIntoComponent(Constructor, statics) {
  function mergeIntoWithNoDuplicateKeys (line 38741) | function mergeIntoWithNoDuplicateKeys(one, two) {
  function createMergedResultFunction (line 38761) | function createMergedResultFunction(one, two) {
  function createChainedFunction (line 38785) | function createChainedFunction(one, two) {
  function bindAutoBindMethod (line 38799) | function bindAutoBindMethod(component, method) {
  function bindAutoBindMethods (line 38836) | function bindAutoBindMethods(component) {
  function is (line 39268) | function is(x, y) {
  function PropTypeError (line 39288) | function PropTypeError(message) {
  function createChainableTypeChecker (line 39295) | function createChainableTypeChecker(validate) {
  function createPrimitiveTypeChecker (line 39331) | function createPrimitiveTypeChecker(expectedType) {
  function createAnyTypeChecker (line 39349) | function createAnyTypeChecker() {
  function createArrayOfTypeChecker (line 39353) | function createArrayOfTypeChecker(typeChecker) {
  function createElementTypeChecker (line 39375) | function createElementTypeChecker() {
  function createInstanceTypeChecker (line 39388) | function createInstanceTypeChecker(expectedClass) {
  function createEnumTypeChecker (line 39401) | function createEnumTypeChecker(expectedValues) {
  function createObjectOfTypeChecker (line 39422) | function createObjectOfTypeChecker(typeChecker) {
  function createUnionTypeChecker (line 39446) | function createUnionTypeChecker(arrayOfTypeCheckers) {
  function createNodeChecker (line 39466) | function createNodeChecker() {
  function createShapeTypeChecker (line 39477) | function createShapeTypeChecker(shapeTypes) {
  function isNode (line 39500) | function isNode(propValue) {
  function isSymbol (line 39547) | function isSymbol(propType, propValue) {
  function getPropType (line 39567) | function getPropType(propValue) {
  function getPreciseType (line 39586) | function getPreciseType(propValue) {
  function getClassName (line 39599) | function getClassName(propValue) {
  function ReactPureComponent (line 39640) | function ReactPureComponent(props, context, updater) {
  function ComponentDummy (line 39650) | function ComponentDummy() {}
  function checkReactTypeSpec (line 39739) | function checkReactTypeSpec(typeSpecs, values, location, componentName, ...
  function onlyChild (line 39823) | function onlyChild(children) {
  function getComponentKey (line 39885) | function getComponentKey(component, index) {
  function traverseAllChildrenImpl (line 39904) | function traverseAllChildrenImpl(children, nameSoFar, callback, traverse...
  function traverseAllChildren (line 40006) | function traverseAllChildren(children, callback, traverseContext) {
  function Url (line 40121) | function Url() {
  function urlParse (line 40189) | function urlParse(url, parseQueryString, slashesDenoteHost) {
  function urlFormat (line 40459) | function urlFormat(obj) {
  function urlResolve (line 40525) | function urlResolve(source, relative) {
  function urlResolveObject (line 40533) | function urlResolveObject(source, relative) {
  function normalizeName (line 40917) | function normalizeName(name) {
  function normalizeValue (line 40927) | function normalizeValue(value) {
  function iteratorFor (line 40935) | function iteratorFor(items) {
  function Headers (line 40952) | function Headers(headers) {
  function consumed (line 41021) | function consumed(body) {
  function fileReaderReady (line 41028) | function fileReaderReady(reader) {
  function readBlobAsArrayBuffer (line 41039) | function readBlobAsArrayBuffer(blob) {
  function readBlobAsText (line 41046) | function readBlobAsText(blob) {
  function readArrayBufferAsText (line 41053) | function readArrayBufferAsText(buf) {
  function bufferClone (line 41063) | function bufferClone(buf) {
  function Body (line 41073) | function Body() {
  function normalizeMethod (line 41169) | function normalizeMethod(method) {
  function Request (line 41174) | function Request(input, options) {
  function decode (line 41215) | function decode(body) {
  function parseHeaders (line 41228) | function parseHeaders(rawHeaders) {
  function Response (line 41243) | function Response(bodyInit, options) {
  function defineProperties (line 41365) | function defineProperties(target, props) { for (var i = 0; i < props.len...
  function _interopRequireDefault (line 41375) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
  function _classCallCheck (line 41377) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
  function _possibleConstructorReturn (line 41379) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
  function _inherits (line 41381) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
  function A (line 41386) | function A() {
  function defineProperties (line 41427) | function defineProperties(target, props) { for (var i = 0; i < props.len...
  function _interopRequireDefault (line 41433) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
  function _classCallCheck (line 41435) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
  function _possibleConstructorReturn (line 41437) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
  function _inherits (line 41439) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
  function B (line 41444) | function B() {

FILE: packages/react-error-overlay/fixtures/inline.es6.mjs
  function foo (line 1) | function foo() {

FILE: packages/react-error-overlay/fixtures/inline.mjs
  function foo (line 6) | function foo() {

FILE: packages/react-error-overlay/fixtures/junk-inline.mjs
  function foo (line 6) | function foo() {

FILE: packages/react-error-overlay/src/components/CloseButton.js
  function CloseButton (line 28) | function CloseButton({ close }: CloseButtonPropsType) {

FILE: packages/react-error-overlay/src/components/CodeBlock.js
  function CodeBlock (line 32) | function CodeBlock({ main, codeHTML }: CodeBlockPropsType) {

FILE: packages/react-error-overlay/src/components/Collapsible.js
  function Collapsible (line 45) | function Collapsible(props: CollapsiblePropsType) {

FILE: packages/react-error-overlay/src/components/ErrorOverlay.js
  function ErrorOverlay (line 42) | function ErrorOverlay(props: ErrorOverlayPropsType) {

FILE: packages/react-error-overlay/src/components/Footer.js
  function Footer (line 25) | function Footer(props: FooterPropsType) {

FILE: packages/react-error-overlay/src/components/Header.js
  function Header (line 30) | function Header(props: HeaderPropType) {

FILE: packages/react-error-overlay/src/components/NavigationBar.js
  function NavigationBar (line 54) | function NavigationBar(props: NavigationBarPropsType) {

FILE: packages/react-error-overlay/src/containers/StackTrace.js
  method renderFrames (line 33) | renderFrames() {

FILE: packages/react-error-overlay/src/effects/stackTraceLimit.js
  constant MAX_STACK_LENGTH (line 13) | const MAX_STACK_LENGTH: number = 50;
  function registerStackTraceLimit (line 15) | function registerStackTraceLimit(limit: number = MAX_STACK_LENGTH) {
  function unregisterStackTraceLimit (line 28) | function unregisterStackTraceLimit() {

FILE: packages/react-error-overlay/src/effects/unhandledError.js
  method if (line 15) | if (!e.error) {
  function registerUnhandledError (line 29) | function registerUnhandledError(target: EventTarget, callback: ErrorCall...
  function unregisterUnhandledError (line 37) | function unregisterUnhandledError(target: EventTarget) {

FILE: packages/react-error-overlay/src/effects/unhandledRejection.js
  method if (line 17) | if (e == null || e.reason == null) {
  function registerUnhandledRejection (line 29) | function registerUnhandledRejection(
  function unregisterUnhandledRejection (line 41) | function unregisterUnhandledRejection(target: EventTarget) {

FILE: packages/react-error-overlay/src/iframeScript.js
  function render (line 20) | function render({

FILE: packages/react-error-overlay/src/index.js
  function setEditorHandler (line 40) | function setEditorHandler(handler: EditorHandler | null) {
  function reportBuildError (line 47) | function reportBuildError(error: string) {
  function reportRuntimeError (line 52) | function reportRuntimeError(
  function dismissBuildError (line 60) | function dismissBuildError() {
  function startReportingRuntimeErrors (line 65) | function startReportingRuntimeErrors(options: RuntimeReportingOptions) {
  function dismissRuntimeErrors (line 107) | function dismissRuntimeErrors() {
  function stopReportingRuntimeErrors (line 112) | function stopReportingRuntimeErrors() {
  function update (line 124) | function update() {
  function updateIframeContent (line 156) | function updateIframeContent() {

FILE: packages/react-error-overlay/src/listenToRuntimeErrors.js
  constant CONTEXT_SIZE (line 30) | const CONTEXT_SIZE: number = 3;
  function listenToRuntimeErrors (line 59) | function listenToRuntimeErrors(

FILE: packages/react-error-overlay/src/utils/dom/absolutifyCaret.js
  function removeNextBr (line 9) | function removeNextBr(parent, component: ?Element) {
  function absolutifyCaret (line 18) | function absolutifyCaret(component: Node) {

FILE: packages/react-error-overlay/src/utils/dom/css.js
  function getHead (line 14) | function getHead(document: Document) {
  function injectCss (line 18) | function injectCss(document: Document, css: string): number {
  function removeCss (line 29) | function removeCss(document: Document, ref: number) {
  function applyStyles (line 38) | function applyStyles(element: HTMLElement, styles: Object) {
  function getTheme (line 49) | function getTheme() {

FILE: packages/react-error-overlay/src/utils/generateAnsiHTML.js
  function generateAnsiHTML (line 45) | function generateAnsiHTML(txt: string, theme: Theme): string {

FILE: packages/react-error-overlay/src/utils/getLinesAround.js
  method if (line 22) | if (typeof lines === 'string') {

FILE: packages/react-error-overlay/src/utils/getPrettyURL.js
  function getPrettyURL (line 9) | function getPrettyURL(

FILE: packages/react-error-overlay/src/utils/getSourceMap.js
  class SourceMap (line 16) | class SourceMap {
    method constructor (line 20) | constructor(sourceMap) {
    method getOriginalPosition (line 29) | getOriginalPosition(
    method getSource (line 70) | getSource(sourceName: string): string {
    method getSources (line 74) | getSources(): string[] {
  function extractSourceMapUrl (line 79) | function extractSourceMapUrl(

FILE: packages/react-error-overlay/src/utils/getStackFrames.js
  function getStackFrames (line 14) | function getStackFrames(

FILE: packages/react-error-overlay/src/utils/isBultinErrorName.js
  function isBultinErrorName (line 9) | function isBultinErrorName(errorName: ?string) {

FILE: packages/react-error-overlay/src/utils/isInternalFile.js
  function isInternalFile (line 9) | function isInternalFile(sourceFileName: ?string, fileName: ?string) {

FILE: packages/react-error-overlay/src/utils/parser.js
  function parseStack (line 34) | function parseStack(stack: string[]): StackFrame[] {
  method if (line 77) | if (error == null) {

FILE: packages/react-error-overlay/src/utils/stack-frame.js
  class ScriptLine (line 11) | class ScriptLine {
    method constructor (line 19) | constructor(lineNumber: number, content: string, highlight: boolean = ...

FILE: packages/react-error-overlay/src/utils/unmapper.js
  function count (line 14) | function count(search: string, string: string): number {
  function unmap (line 34) | async function unmap(

FILE: packages/react-error-overlay/src/utils/warnings.js
  function stripInlineStacktrace (line 11) | function stripInlineStacktrace(message: string): string {
  function massage (line 18) | function massage(

FILE: packages/react-scripts/config/env.js
  constant NODE_ENV (line 18) | const NODE_ENV = process.env.NODE_ENV;
  constant REACT_APP (line 69) | const REACT_APP = /^REACT_APP_/i;
  function getClientEnvironment (line 71) | function getClientEnvironment(publicUrl) {

FILE: packages/react-scripts/config/getHttpsConfig.js
  function validateKeyAndCerts (line 19) | function validateKeyAndCerts({ cert, key, keyFile, crtFile }) {
  function readEnvFile (line 43) | function readEnvFile(file, type) {
  function getHttpsConfig (line 56) | function getHttpsConfig() {

FILE: packages/react-scripts/config/jest/cssTransform.js
  method process (line 15) | process() {
  method getCacheKey (line 18) | getCacheKey() {

FILE: packages/react-scripts/config/jest/fileTransform.js
  method process (line 10) | process(src, filename) {

FILE: packages/react-scripts/config/modules.js
  function getAdditionalModulePaths (line 22) | function getAdditionalModulePaths(options = {}) {
  function getWebpackAliases (line 65) | function getWebpackAliases(options = {}) {
  function getJestAliases (line 86) | function getJestAliases(options = {}) {
  function getModules (line 102) | function getModules() {

FILE: packages/react-scripts/config/webpackDevServer.config.js
  method onBeforeSetupMiddleware (line 112) | onBeforeSetupMiddleware(devServer) {
  method onAfterSetupMiddleware (line 123) | onAfterSetupMiddleware(devServer) {

FILE: packages/react-scripts/fixtures/kitchensink/template/integration/initDOM.js
  method fetch (line 29) | fetch(href, options) {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/App.js
  class BuiltEmitter (line 11) | class BuiltEmitter extends Component {
    method componentDidMount (line 17) | componentDidMount() {
    method handleError (line 32) | handleError(error) {
    method handleReady (line 36) | handleReady() {
    method render (line 40) | render() {
  class App (line 56) | class App extends Component {
    method constructor (line 57) | constructor(props) {
    method componentDidMount (line 65) | componentDidMount() {
    method setFeature (line 264) | setFeature(feature) {
    method render (line 268) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/config/BaseUrl.js
  class BaseUrl (line 12) | class BaseUrl extends Component {
    method constructor (line 17) | constructor(props) {
    method componentDidMount (line 22) | async componentDidMount() {
    method componentDidUpdate (line 27) | componentDidUpdate() {
    method render (line 31) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/ArrayDestructuring.js
  function load (line 11) | function load() {
  class ArrayDestructuring (line 20) | class ArrayDestructuring extends Component {
    method constructor (line 25) | constructor(props) {
    method componentDidMount (line 30) | async componentDidMount() {
    method componentDidUpdate (line 35) | componentDidUpdate() {
    method render (line 39) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/ArraySpread.js
  function load (line 11) | function load(users) {
  class ArraySpread (line 20) | class ArraySpread extends Component {
    method constructor (line 25) | constructor(props) {
    method componentDidMount (line 30) | async componentDidMount() {
    method componentDidUpdate (line 35) | componentDidUpdate() {
    method render (line 39) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/AsyncAwait.js
  function load (line 11) | async function load() {
  class AsyncAwait (line 30) | class AsyncAwait extends Component {
    method constructor (line 35) | constructor(props) {
    method componentDidMount (line 40) | async componentDidMount() {
    method componentDidUpdate (line 45) | componentDidUpdate() {
    method render (line 49) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/ClassProperties.js
  class ClassProperties (line 11) | class ClassProperties extends Component {
    method componentDidMount (line 23) | componentDidMount() {
    method render (line 27) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/ComputedProperties.js
  function load (line 11) | function load(prefix) {
  class ComputedProperties (line 20) | class ComputedProperties extends Component {
    method constructor (line 25) | constructor(props) {
    method componentDidMount (line 30) | async componentDidMount() {
    method componentDidUpdate (line 35) | componentDidUpdate() {
    method render (line 39) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/CustomInterpolation.js
  function load (line 18) | function load() {
  class CustomInterpolation (line 27) | class CustomInterpolation extends Component {
    method constructor (line 32) | constructor(props) {
    method componentDidMount (line 37) | async componentDidMount() {
    method componentDidUpdate (line 42) | componentDidUpdate() {
    method render (line 46) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/DefaultParameters.js
  function load (line 11) | function load(id = 0) {
  class DefaultParameters (line 20) | class DefaultParameters extends Component {
    method constructor (line 25) | constructor(props) {
    method componentDidMount (line 30) | async componentDidMount() {
    method componentDidUpdate (line 35) | componentDidUpdate() {
    method render (line 39) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/DestructuringAndAwait.js
  function load (line 11) | async function load() {
  class DestructuringAndAwait (line 22) | class DestructuringAndAwait extends Component {
    method constructor (line 27) | constructor(props) {
    method componentDidMount (line 32) | async componentDidMount() {
    method componentDidUpdate (line 37) | componentDidUpdate() {
    method render (line 41) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/Generators.js
  class Generators (line 19) | class Generators extends Component {
    method constructor (line 24) | constructor(props) {
    method componentDidMount (line 29) | componentDidMount() {
    method componentDidUpdate (line 37) | componentDidUpdate() {
    method render (line 41) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/NullishCoalescing.js
  function load (line 11) | function load() {
  class NullishCoalescing (line 20) | class NullishCoalescing extends Component {
    method constructor (line 25) | constructor(props) {
    method componentDidMount (line 30) | async componentDidMount() {
    method componentDidUpdate (line 35) | componentDidUpdate() {
    method render (line 39) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/ObjectDestructuring.js
  function load (line 11) | function load() {
  class ObjectDestructuring (line 20) | class ObjectDestructuring extends Component {
    method constructor (line 25) | constructor(props) {
    method componentDidMount (line 30) | async componentDidMount() {
    method componentDidUpdate (line 35) | componentDidUpdate() {
    method render (line 39) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/ObjectSpread.js
  function load (line 11) | function load(baseUser) {
  class ObjectSpread (line 20) | class ObjectSpread extends Component {
    method constructor (line 25) | constructor(props) {
    method componentDidMount (line 30) | async componentDidMount() {
    method componentDidUpdate (line 35) | componentDidUpdate() {
    method render (line 39) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/OptionalChaining.js
  function load (line 11) | function load() {
  class OptionalChaining (line 20) | class OptionalChaining extends Component {
    method constructor (line 25) | constructor(props) {
    method componentDidMount (line 30) | async componentDidMount() {
    method componentDidUpdate (line 35) | componentDidUpdate() {
    method render (line 39) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/Promises.js
  function load (line 11) | function load() {
  class Promises (line 20) | class Promises extends Component {
    method constructor (line 25) | constructor(props) {
    method componentDidMount (line 30) | componentDidMount() {
    method componentDidUpdate (line 36) | componentDidUpdate() {
    method render (line 40) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/RestAndDefault.js
  function load (line 11) | function load({ id, ...rest } = { id: 0, user: { id: 42, name: '42' } }) {
  class RestAndDefault (line 20) | class RestAndDefault extends Component {
    method constructor (line 25) | constructor(props) {
    method componentDidMount (line 30) | async componentDidMount() {
    method componentDidUpdate (line 35) | componentDidUpdate() {
    method render (line 39) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/RestParameters.js
  function load (line 11) | function load({ id = 0, ...rest }) {
  class RestParameters (line 20) | class RestParameters extends Component {
    method constructor (line 25) | constructor(props) {
    method componentDidMount (line 30) | async componentDidMount() {
    method componentDidUpdate (line 35) | componentDidUpdate() {
    method render (line 39) | render() {

FILE: packages/react-scripts/fixtures/kitchensink/template/src/features/syntax/TemplateInterpolation.js
  function load (line 11) | function load(name) {
  class TemplateInterpolation (line 20) | class TemplateInterpolation extends Component {
    method constructor (line 25) | constructor(props) {
    method componentDidMount (line 30) | async componentDidMount() {
    method componentDidUpdate (line 35) | componentDidUpdate() {
    method render (line 39) | render() {

FILE: packages/react-scripts/lib/react-app.d.ts
  type ProcessEnv (line 6) | interface ProcessEnv {

FILE: packages/react-scripts/scripts/build.js
  constant WARN_AFTER_BUNDLE_GZIP_SIZE (line 44) | const WARN_AFTER_BUNDLE_GZIP_SIZE = 512 * 1024;
  constant WARN_AFTER_CHUNK_GZIP_SIZE (line 45) | const WARN_AFTER_CHUNK_GZIP_SIZE = 1024 * 1024;
  function build (line 143) | function build(previousFileSizes) {
  function copyPublicFolder (line 220) | function copyPublicFolder() {

FILE: packages/react-scripts/scripts/eject.js
  function getGitStatus (line 30) | function getGitStatus() {
  function tryGitAdd (line 41) | function tryGitAdd(appPath) {
  function verifyAbsent (line 100) | function verifyAbsent(file) {

FILE: packages/react-scripts/scripts/init.js
  function isInGitRepository (line 26) | function isInGitRepository() {
  function isInMercurialRepository (line 35) | function isInMercurialRepository() {
  function tryGitInit (line 44) | function tryGitInit() {
  function tryGitCommit (line 59) | function tryGitCommit(appPath) {
  function isReactInstalled (line 409) | function isReactInstalled(appPackage) {

FILE: packages/react-scripts/scripts/start.js
  constant DEFAULT_PORT (line 55) | const DEFAULT_PORT = parseInt(process.env.PORT, 10) || 3000;
  constant HOST (line 56) | const HOST = process.env.HOST || '0.0.0.0';

FILE: packages/react-scripts/scripts/test.js
  function isInGitRepository (line 30) | function isInGitRepository() {
  function isInMercurialRepository (line 39) | function isInMercurialRepository() {
  function resolveJestDefaultEnvironment (line 79) | function resolveJestDefaultEnvironment(name) {

FILE: packages/react-scripts/scripts/utils/verifyTypeScriptSetup.js
  function writeJson (line 34) | function writeJson(fileName, object) {
  function verifyNoTypeScript (line 41) | function verifyNoTypeScript() {
  function verifyTypeScriptSetup (line 60) | function verifyTypeScriptSetup() {

FILE: tasks/screencast-start.js
  function main (line 18) | function main(cli) {

FILE: tasks/screencast.js
  function main (line 19) | function main() {
  function cut (line 59) | function cut(frames, { start, end }) {
  function replace (line 70) | function replace(frames, replacements) {

FILE: test/fixtures/__shared__/util/scripts.js
  function execaSafe (line 8) | function execaSafe(...args) {
  method constructor (line 27) | constructor(root) {
  method start (line 31) | async start({ smoke = false, env = {} } = {}) {
  method build (line 60) | async build({ env = {} } = {}) {
  method serve (line 67) | async serve() {
  method test (line 85) | async test({ jestEnvironment = 'jsdom', env = {} } = {}) {

FILE: test/fixtures/__shared__/util/setup.js
  method constructor (line 10) | constructor(fixtureName, templateDirectory) {
  method setup (line 23) | async setup() {
  method scripts (line 78) | get scripts() {
  method teardown (line 88) | async teardown() {

FILE: test/fixtures/issue-5176-flow-class-properties/src/App.js
  class App (line 1) | class App {
    method constructor (line 2) | constructor() {
    method foo (line 6) | foo() {

FILE: test/fixtures/jsconfig/src/App.js
  class App (line 13) | class App extends Component {
    method constructor (line 18) | constructor(props) {
    method componentDidMount (line 23) | async componentDidMount() {
    method componentDidUpdate (line 28) | componentDidUpdate() {
    method render (line 32) | render() {

FILE: test/fixtures/mjs-support/src/App.js
  method resolve (line 15) | resolve() {
  class App (line 23) | class App extends Component {
    method componentDidMount (line 25) | componentDidMount() {
    method render (line 30) | render() {

FILE: test/fixtures/typescript-advanced/src/App.tsx
  type MyType (line 3) | interface MyType {
  function assertIsString (line 9) | function assertIsString(val: any): asserts val is string {
  type MyObject (line 18) | type MyObject = Pick<MyType, 'bar' | 'baz'>;
  class App (line 20) | class App extends React.Component {
    method render (line 24) | render() {

FILE: test/fixtures/typescript-typecheck/src/App.tsx
  class App (line 3) | class App extends React.Component {
    method render (line 4) | render() {
  function format (line 9) | function format(value: string) {

FILE: test/fixtures/typescript/src/App.ts
  type MyType (line 3) | interface MyType {
  type MyObject (line 9) | type MyObject = Pick<MyType, 'bar' | 'baz'>;
  class App (line 11) | @annotation
  function annotation (line 20) | function annotation(target: any) {
  function propertyDecorator (line 24) | function propertyDecorator(target: any, key: string) {
  type MyType (line 31) | interface MyType {

FILE: test/fixtures/webpack-message-formatting/src/AppAliasUnknownExport.js
  class App (line 4) | class App extends Component {
    method componentDidMount (line 5) | componentDidMount() {
    method render (line 8) | render() {

FILE: test/fixtures/webpack-message-formatting/src/AppBabel.js
  class App (line 3) | class App extends Component {
    method render (line 4) | render() {

FILE: test/fixtures/webpack-message-formatting/src/AppCss.js
  class App (line 4) | class App extends Component {
    method render (line 5) | render() {

FILE: test/fixtures/webpack-message-formatting/src/AppIncorrectCase.js
  class App (line 4) | class App extends Component {
    method render (line 5) | render() {

FILE: test/fixtures/webpack-message-formatting/src/AppLintError.js
  function foo (line 3) | function foo() {
  class App (line 7) | class App extends Component {
    method render (line 8) | render() {

FILE: test/fixtures/webpack-message-formatting/src/AppLintWarning.js
  function foo (line 3) | function foo() {}
  class App (line 5) | class App extends Component {
    method render (line 6) | render() {

FILE: test/fixtures/webpack-message-formatting/src/AppMissingPackage.js
  class App (line 4) | class App extends Component {
    method componentDidMount (line 5) | componentDidMount() {
    method render (line 8) | render() {

FILE: test/fixtures/webpack-message-formatting/src/AppNoDefault.js
  class App (line 4) | class App extends Component {
    method render (line 5) | render() {

FILE: test/fixtures/webpack-message-formatting/src/AppOutOfScopeImport.js
  class App (line 4) | class App extends Component {
    method render (line 5) | render() {

FILE: test/fixtures/webpack-message-formatting/src/AppSass.js
  class App (line 4) | class App extends Component {
    method render (line 5) | render() {

FILE: test/fixtures/webpack-message-formatting/src/AppUnknownExport.js
  class App (line 4) | class App extends Component {
    method componentDidMount (line 5) | componentDidMount() {
    method render (line 8) | render() {

FILE: test/fixtures/webpack-message-formatting/src/AppUnknownFile.js
  class App (line 4) | class App extends Component {
    method render (line 5) | render() {

FILE: test/fixtures/webpack-message-formatting/src/FooExport.js
  function foo (line 1) | function foo() {
Condensed preview — 494 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (4,366K chars).
[
  {
    "path": ".alexignore",
    "chars": 37,
    "preview": "build\n\nCHANGELOG*\nCODE_OF_CONDUCT.md\n"
  },
  {
    "path": ".alexrc",
    "chars": 258,
    "preview": "{\n  \"allow\": [\n    \"attacks\",\n    \"colors\",\n    \"conservative\",\n    \"crashes\",\n    \"executed\",\n    \"executes\",\n    \"exec"
  },
  {
    "path": ".eslintignore",
    "chars": 112,
    "preview": "node_modules/\nbuild/\ntest/fixtures/webpack-message-formatting/src/AppBabel.js\npackages/react-error-overlay/lib/\n"
  },
  {
    "path": ".eslintrc.json",
    "chars": 1271,
    "preview": "{\n  \"extends\": \"eslint:recommended\",\n  \"env\": {\n    \"browser\": true,\n    \"commonjs\": true,\n    \"node\": true,\n    \"es6\": "
  },
  {
    "path": ".gitattributes",
    "chars": 19,
    "preview": "* text=auto eol=lf\n"
  },
  {
    "path": ".github/CODEOWNERS",
    "chars": 54,
    "preview": "packages/ @iansu @mrmckeb\ndocusaurus/ @iansu @mrmckeb\n"
  },
  {
    "path": ".github/FUNDING.yml",
    "chars": 34,
    "preview": "open_collective: create-react-app\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "chars": 5053,
    "preview": "---\nname: Bug report\nabout: Create a report to help us improve\nlabels: 'issue: bug report, needs triage'\n---\n\n<!--\n    P"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/proposal.md",
    "chars": 807,
    "preview": "---\nname: Proposal\nabout: Suggest an idea for improving Create React App\nlabels: 'issue: proposal, needs triage'\n---\n\n##"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/question.md",
    "chars": 674,
    "preview": "---\nname: Question\nabout: Get help with Create React App\nlabels: 'needs triage'\n---\n\nIf you have a general question abou"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "chars": 197,
    "preview": "<!--\nThank you for sending the PR!\n\nIf you changed any code, please provide us with clear instructions on how you verifi"
  },
  {
    "path": ".github/lock.yml",
    "chars": 349,
    "preview": "# Configuration for lock-threads - https://github.com/dessant/lock-threads\n\n# Number of days of inactivity before a clos"
  },
  {
    "path": ".github/stale.yml",
    "chars": 2135,
    "preview": "# Configuration for probot-stale - https://github.com/probot/stale\n\n# Number of days of inactivity before an Issue or Pu"
  },
  {
    "path": ".github/workflows/build-and-test.yml",
    "chars": 1781,
    "preview": "name: 'Build & Test'\n\non:\n  push:\n    branches:\n      - main\n  pull_request:\n    branches:\n      - main\n\njobs:\n  build:\n"
  },
  {
    "path": ".github/workflows/e2e-base.yml",
    "chars": 840,
    "preview": "on:\n  workflow_call:\n    inputs:\n      testScript:\n        required: true\n        type: string\n\nname: E2E\n\njobs:\n  test:"
  },
  {
    "path": ".github/workflows/lint.yml",
    "chars": 472,
    "preview": "name: Lint\n\non: [push, pull_request]\n\njobs:\n  lint:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout"
  },
  {
    "path": ".gitignore",
    "chars": 180,
    "preview": ".idea/\n.vscode/\nnode_modules/\nbuild/\n.DS_Store\n*.tgz\nmy-app*\ntemplate/src/__tests__/__snapshots__/\nlerna-debug.log\nnpm-d"
  },
  {
    "path": ".prettierignore",
    "chars": 347,
    "preview": "build/\npackage-lock.json\ntest/fixtures/webpack-message-formatting/src/AppBabel.js\ntest/fixtures/webpack-message-formatti"
  },
  {
    "path": ".prettierrc",
    "chars": 68,
    "preview": "{\n  \"arrowParens\": \"avoid\",\n  \"singleQuote\": true,\n  \"semi\": true\n}\n"
  },
  {
    "path": "CHANGELOG-0.x.md",
    "chars": 88751,
    "preview": "## 1.0.0 and Newer Versions\n\n**Please refer to [CHANGELOG-1.x.md](./CHANGELOG-1.x.md) for the 1.x range, and [CHANGELOG."
  },
  {
    "path": "CHANGELOG-1.x.md",
    "chars": 101686,
    "preview": "## 2.0.3 and Newer Versions\n\n**Please refer to [CHANGELOG-2.x.md](./CHANGELOG-2.x.md) for the 2.x range, and [CHANGELOG."
  },
  {
    "path": "CHANGELOG-2.x.md",
    "chars": 96388,
    "preview": "## 3.0.0 and Newer Versions\n\n**Please refer to [CHANGELOG.md](./CHANGELOG.md) for the newer versions.**\n\n## 2.1.8 (March"
  },
  {
    "path": "CHANGELOG-3.x.md",
    "chars": 88549,
    "preview": "## 3.4.4 (2020-10-20)\n\nv3.4.4 release bumps `resolve-url-loader` to a version for which `npm audit` does not report a vu"
  },
  {
    "path": "CHANGELOG-4.x.md",
    "chars": 35401,
    "preview": "## 4.0.3 (2021-02-22)\n\nv4.0.3 is a maintenance release that includes minor bug fixes and dependency updates.\n\n#### :bug:"
  },
  {
    "path": "CHANGELOG.md",
    "chars": 16111,
    "preview": "## 5.0.1 (2022-04-12)\n\nCreate React App 5.0.1 is a maintenance release that improves compatibility with React 18. We've "
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "chars": 3355,
    "preview": "# Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, we as\ncontributors and"
  },
  {
    "path": "CONTRIBUTING.md",
    "chars": 12367,
    "preview": "# Contributing to Create React App\n\nLoving Create React App and want to get involved? Thanks! There are plenty of ways y"
  },
  {
    "path": "LICENSE",
    "chars": 1080,
    "preview": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obt"
  },
  {
    "path": "README.md",
    "chars": 11556,
    "preview": "## Create React App [![Build & Test](https://github.com/facebook/create-react-app/actions/workflows/build-and-test.yml/b"
  },
  {
    "path": "SECURITY.md",
    "chars": 411,
    "preview": "# Reporting Security Issues\n\nIf you believe you have found a security vulnerability in Create React App, we encourage yo"
  },
  {
    "path": "docusaurus/docs/adding-a-css-modules-stylesheet.md",
    "chars": 1803,
    "preview": "---\nid: adding-a-css-modules-stylesheet\ntitle: Adding a CSS Modules Stylesheet\nsidebar_label: Adding CSS Modules\n---\n\n> "
  },
  {
    "path": "docusaurus/docs/adding-a-router.md",
    "chars": 844,
    "preview": "---\nid: adding-a-router\ntitle: Adding a Router\n---\n\nCreate React App doesn't prescribe a specific routing solution, but "
  },
  {
    "path": "docusaurus/docs/adding-a-sass-stylesheet.md",
    "chars": 3304,
    "preview": "---\nid: adding-a-sass-stylesheet\ntitle: Adding a Sass Stylesheet\nsidebar_label: Adding Sass Stylesheets\n---\n\n> Note: thi"
  },
  {
    "path": "docusaurus/docs/adding-a-stylesheet.md",
    "chars": 1538,
    "preview": "---\nid: adding-a-stylesheet\ntitle: Adding a Stylesheet\nsidebar_label: Adding Stylesheets\n---\n\nThis project setup uses [w"
  },
  {
    "path": "docusaurus/docs/adding-bootstrap.md",
    "chars": 2308,
    "preview": "---\nid: adding-bootstrap\ntitle: Adding Bootstrap\n---\n\nWhile you don’t have to use any specific library to integrate Boot"
  },
  {
    "path": "docusaurus/docs/adding-css-reset.md",
    "chars": 1724,
    "preview": "---\nid: adding-css-reset\ntitle: Adding a CSS Reset\nsidebar_label: Adding CSS Reset\n---\n\nThis project setup uses [PostCSS"
  },
  {
    "path": "docusaurus/docs/adding-custom-environment-variables.md",
    "chars": 8015,
    "preview": "---\nid: adding-custom-environment-variables\ntitle: Adding Custom Environment Variables\nsidebar_label: Environment Variab"
  },
  {
    "path": "docusaurus/docs/adding-flow.md",
    "chars": 1578,
    "preview": "---\nid: adding-flow\ntitle: Adding Flow\n---\n\nFlow is a static type checker that helps you write code with fewer bugs. Che"
  },
  {
    "path": "docusaurus/docs/adding-images-fonts-and-files.md",
    "chars": 3323,
    "preview": "---\nid: adding-images-fonts-and-files\ntitle: Adding Images, Fonts, and Files\n---\n\nWith webpack, using static assets like"
  },
  {
    "path": "docusaurus/docs/adding-relay.md",
    "chars": 894,
    "preview": "---\nid: adding-relay\ntitle: Adding Relay\n---\n\nRelay is a framework for building data-driven React applications powered b"
  },
  {
    "path": "docusaurus/docs/adding-typescript.md",
    "chars": 3112,
    "preview": "---\nid: adding-typescript\ntitle: Adding TypeScript\n---\n\n> Note: this feature is available with `react-scripts@2.1.0` and"
  },
  {
    "path": "docusaurus/docs/advanced-configuration.md",
    "chars": 16643,
    "preview": "---\nid: advanced-configuration\ntitle: Advanced Configuration\n---\n\nYou can adjust various development and production sett"
  },
  {
    "path": "docusaurus/docs/alternatives-to-ejecting.md",
    "chars": 599,
    "preview": "---\nid: alternatives-to-ejecting\ntitle: Alternatives to Ejecting\n---\n\n[Ejecting](available-scripts.md#npm-run-eject) let"
  },
  {
    "path": "docusaurus/docs/analyzing-the-bundle-size.md",
    "chars": 881,
    "preview": "---\nid: analyzing-the-bundle-size\ntitle: Analyzing the Bundle Size\nsidebar_label: Analyzing Bundle Size\n---\n\n[Source map"
  },
  {
    "path": "docusaurus/docs/available-scripts.md",
    "chars": 2359,
    "preview": "---\nid: available-scripts\ntitle: Available Scripts\nsidebar_label: Available Scripts\n---\n\nIn the project directory, you c"
  },
  {
    "path": "docusaurus/docs/can-i-use-decorators.md",
    "chars": 906,
    "preview": "---\nid: can-i-use-decorators\ntitle: Can I Use Decorators?\n---\n\nSome popular libraries use [decorators](https://medium.co"
  },
  {
    "path": "docusaurus/docs/code-splitting.md",
    "chars": 1773,
    "preview": "---\nid: code-splitting\ntitle: Code Splitting\n---\n\nInstead of downloading the entire app before users can use it, code sp"
  },
  {
    "path": "docusaurus/docs/custom-templates.md",
    "chars": 3323,
    "preview": "---\nid: custom-templates\ntitle: Custom Templates\n---\n\n> Note: this feature is available with `react-scripts@3.3.0` and h"
  },
  {
    "path": "docusaurus/docs/debugging-tests.md",
    "chars": 2303,
    "preview": "---\nid: debugging-tests\ntitle: Debugging Tests\nsidebar_label: Debugging Tests\n---\n\nThere are various ways to setup a deb"
  },
  {
    "path": "docusaurus/docs/deployment.md",
    "chars": 23784,
    "preview": "---\nid: deployment\ntitle: Deployment\nsidebar_label: Deployment\n---\n\n`npm run build` creates a `build` directory with a p"
  },
  {
    "path": "docusaurus/docs/developing-components-in-isolation.md",
    "chars": 3042,
    "preview": "---\nid: developing-components-in-isolation\ntitle: Developing Components in Isolation\n---\n\nUsually, in an app, you have a"
  },
  {
    "path": "docusaurus/docs/documentation-intro.md",
    "chars": 897,
    "preview": "---\nid: documentation-intro\ntitle: About the Documentation\nsidebar_label: About Docs\n---\n\nWelcome to the Create React Ap"
  },
  {
    "path": "docusaurus/docs/fetching-data-with-ajax-requests.md",
    "chars": 1628,
    "preview": "---\nid: fetching-data-with-ajax-requests\ntitle: Fetching Data with AJAX Requests\nsidebar_label: Fetching Data\n---\n\nReact"
  },
  {
    "path": "docusaurus/docs/folder-structure.md",
    "chars": 1175,
    "preview": "---\nid: folder-structure\ntitle: Folder Structure\n---\n\nAfter creation, your project should look like this:\n\n```\nmy-app/\n "
  },
  {
    "path": "docusaurus/docs/getting-started.md",
    "chars": 5462,
    "preview": "---\nid: getting-started\ntitle: Getting Started\n---\n\nCreate React App is an officially supported way to create single-pag"
  },
  {
    "path": "docusaurus/docs/importing-a-component.md",
    "chars": 2882,
    "preview": "---\nid: importing-a-component\ntitle: Importing a Component\n---\n\nThis project setup supports ES6 modules thanks to webpac"
  },
  {
    "path": "docusaurus/docs/installing-a-dependency.md",
    "chars": 475,
    "preview": "---\nid: installing-a-dependency\ntitle: Installing a Dependency\n---\n\nThe generated project includes React and ReactDOM as"
  },
  {
    "path": "docusaurus/docs/integrating-with-an-api-backend.md",
    "chars": 1322,
    "preview": "---\nid: integrating-with-an-api-backend\ntitle: Integrating with an API Backend\nsidebar_label: Integrating with an API\n--"
  },
  {
    "path": "docusaurus/docs/loading-graphql-files.md",
    "chars": 1411,
    "preview": "---\nid: loading-graphql-files\ntitle: Loading .graphql Files\nsidebar_label: Loading .graphql Files\n---\n\nTo load `.gql` an"
  },
  {
    "path": "docusaurus/docs/making-a-progressive-web-app.md",
    "chars": 10039,
    "preview": "---\nid: making-a-progressive-web-app\ntitle: Making a Progressive Web App\n---\n\nThe production build has all the tools nec"
  },
  {
    "path": "docusaurus/docs/measuring-performance.md",
    "chars": 2469,
    "preview": "---\nid: measuring-performance\ntitle: Measuring Performance\n---\n\nBy default, Create React App includes a performance rela"
  },
  {
    "path": "docusaurus/docs/post-processing-css.md",
    "chars": 1844,
    "preview": "---\nid: post-processing-css\ntitle: Post-Processing CSS\n---\n\nThis project setup minifies your CSS and adds vendor prefixe"
  },
  {
    "path": "docusaurus/docs/pre-rendering-into-static-html-files.md",
    "chars": 1105,
    "preview": "---\nid: pre-rendering-into-static-html-files\ntitle: Pre-Rendering into Static HTML Files\nsidebar_label: Pre-Rendering St"
  },
  {
    "path": "docusaurus/docs/production-build.md",
    "chars": 3914,
    "preview": "---\nid: production-build\ntitle: Creating a Production Build\n---\n\n`npm run build` creates a `build` directory with a prod"
  },
  {
    "path": "docusaurus/docs/proxying-api-requests-in-development.md",
    "chars": 5709,
    "preview": "---\nid: proxying-api-requests-in-development\ntitle: Proxying API Requests in Development\nsidebar_label: Proxying in Deve"
  },
  {
    "path": "docusaurus/docs/running-tests.md",
    "chars": 16409,
    "preview": "---\nid: running-tests\ntitle: Running Tests\n---\n\n> Note: this feature is available with `react-scripts@0.3.0` and higher."
  },
  {
    "path": "docusaurus/docs/setting-up-your-editor.md",
    "chars": 6913,
    "preview": "---\nid: setting-up-your-editor\ntitle: Setting Up Your Editor\nsidebar_label: Editor Setup\n---\n\nCreate React App comes wit"
  },
  {
    "path": "docusaurus/docs/supported-browsers-features.md",
    "chars": 3869,
    "preview": "---\nid: supported-browsers-features\ntitle: Supported Browsers and Features\nsidebar_label: Supported Browsers and Feature"
  },
  {
    "path": "docusaurus/docs/title-and-meta-tags.md",
    "chars": 2839,
    "preview": "---\nid: title-and-meta-tags\ntitle: Title and Meta Tags\nsidebar_label: Title & Meta Tags\n---\n\n## Changing the title tag\n\n"
  },
  {
    "path": "docusaurus/docs/troubleshooting.md",
    "chars": 6508,
    "preview": "---\nid: troubleshooting\ntitle: Troubleshooting\nsidebar_label: Troubleshooting\n---\n\n## `npm start` doesn’t detect changes"
  },
  {
    "path": "docusaurus/docs/updating-to-new-releases.md",
    "chars": 1481,
    "preview": "---\nid: updating-to-new-releases\ntitle: Updating to New Releases\n---\n\nCreate React App is divided into two packages:\n\n- "
  },
  {
    "path": "docusaurus/docs/using-global-variables.md",
    "chars": 604,
    "preview": "---\nid: using-global-variables\ntitle: Using Global Variables\n---\n\nWhen you include a script in the HTML file that define"
  },
  {
    "path": "docusaurus/docs/using-https-in-development.md",
    "chars": 1671,
    "preview": "---\nid: using-https-in-development\ntitle: Using HTTPS in Development\nsidebar_label: HTTPS in Development\n---\n\n> Note: th"
  },
  {
    "path": "docusaurus/docs/using-the-public-folder.md",
    "chars": 3599,
    "preview": "---\nid: using-the-public-folder\ntitle: Using the Public Folder\n---\n\n> Note: this feature is available with `react-script"
  },
  {
    "path": "docusaurus/website/.gitignore",
    "chars": 232,
    "preview": "# dependencies\n/node_modules\n\n# production\n/build\n\n# generated files\n.docusaurus\n.cache-loader\n\n# misc\n.DS_Store\n.env.lo"
  },
  {
    "path": "docusaurus/website/README.md",
    "chars": 701,
    "preview": "# Website\n\nThis website is built using Docusaurus 2, a modern static website generator.\n\n### Installation\n\n```\n$ npm ins"
  },
  {
    "path": "docusaurus/website/docusaurus.config.js",
    "chars": 3422,
    "preview": "/**\n * Copyright (c) 2017-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "docusaurus/website/package.json",
    "chars": 626,
    "preview": "{\n  \"name\": \"cra-docs\",\n  \"private\": true,\n  \"scripts\": {\n    \"start\": \"docusaurus start\",\n    \"build\": \"docusaurus buil"
  },
  {
    "path": "docusaurus/website/sidebars.json",
    "chars": 1637,
    "preview": "{\n  \"docs\": {\n    \"Welcome\": [\"documentation-intro\"],\n    \"Getting Started\": [\n      \"getting-started\",\n      \"folder-st"
  },
  {
    "path": "docusaurus/website/src/css/custom.css",
    "chars": 1525,
    "preview": ":root {\n  --ifm-color-primary: #09d3ac;\n  --ifm-color-primary-dark: rgb(8, 190, 155);\n  --ifm-color-primary-darker: rgb("
  },
  {
    "path": "docusaurus/website/src/pages/index.js",
    "chars": 5418,
    "preview": "/**\n * Copyright (c) 2017-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "docusaurus/website/src/pages/styles.module.css",
    "chars": 776,
    "preview": "/**\n * Copyright (c) 2017-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "docusaurus/website/static/CNAME",
    "chars": 22,
    "preview": "create-react-app.dev\r\n"
  },
  {
    "path": "lerna.json",
    "chars": 566,
    "preview": "{\n  \"lerna\": \"2.6.0\",\n  \"npmClient\": \"yarn\",\n  \"useWorkspaces\": true,\n  \"version\": \"independent\",\n  \"changelog\": {\n    \""
  },
  {
    "path": "netlify.toml",
    "chars": 111,
    "preview": "[build]\n  base    = \"docusaurus/website\"\n  publish = \"docusaurus/website/build\"\n  command = \"npm run build\"\n  \n"
  },
  {
    "path": "package.json",
    "chars": 1802,
    "preview": "{\n  \"private\": true,\n  \"workspaces\": [\n    \"packages/*\",\n    \"docusaurus/website\"\n  ],\n  \"scripts\": {\n    \"build\": \"cd p"
  },
  {
    "path": "packages/babel-plugin-named-asset-import/LICENSE",
    "chars": 1080,
    "preview": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obt"
  },
  {
    "path": "packages/babel-plugin-named-asset-import/index.js",
    "chars": 2682,
    "preview": "'use strict';\n\nconst { extname } = require('path');\n\nfunction namedAssetImportPlugin({ types: t }) {\n  const visited = n"
  },
  {
    "path": "packages/babel-plugin-named-asset-import/index.test.js",
    "chars": 3036,
    "preview": "'use strict';\n\nconst pluginTester = require('babel-plugin-tester/pure');\nconst namedAssetImport = require('./index');\n\np"
  },
  {
    "path": "packages/babel-plugin-named-asset-import/package.json",
    "chars": 653,
    "preview": "{\n  \"name\": \"babel-plugin-named-asset-import\",\n  \"version\": \"0.4.0\",\n  \"description\": \"Babel plugin for named asset impo"
  },
  {
    "path": "packages/babel-preset-react-app/LICENSE",
    "chars": 1080,
    "preview": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obt"
  },
  {
    "path": "packages/babel-preset-react-app/README.md",
    "chars": 2110,
    "preview": "# babel-preset-react-app\n\nThis package includes the Babel preset used by [Create React App](https://github.com/facebook/"
  },
  {
    "path": "packages/babel-preset-react-app/create.js",
    "chars": 8014,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/babel-preset-react-app/dependencies.js",
    "chars": 5144,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/babel-preset-react-app/dev.js",
    "chars": 356,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/babel-preset-react-app/index.js",
    "chars": 736,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/babel-preset-react-app/package.json",
    "chars": 1421,
    "preview": "{\n  \"name\": \"babel-preset-react-app\",\n  \"version\": \"10.1.0\",\n  \"description\": \"Babel preset used by Create React App\",\n "
  },
  {
    "path": "packages/babel-preset-react-app/prod.js",
    "chars": 355,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/babel-preset-react-app/test.js",
    "chars": 349,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/babel-preset-react-app/webpack-overrides.js",
    "chars": 1123,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/confusing-browser-globals/LICENSE",
    "chars": 1080,
    "preview": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obt"
  },
  {
    "path": "packages/confusing-browser-globals/README.md",
    "chars": 1180,
    "preview": "# confusing-browser-globals\n\nA curated list of browser globals that commonly cause confusion and are not recommended to "
  },
  {
    "path": "packages/confusing-browser-globals/index.js",
    "chars": 1013,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/confusing-browser-globals/package.json",
    "chars": 541,
    "preview": "{\n  \"name\": \"confusing-browser-globals\",\n  \"version\": \"1.0.11\",\n  \"description\": \"A list of browser globals that are oft"
  },
  {
    "path": "packages/confusing-browser-globals/test.js",
    "chars": 443,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/cra-template/README.md",
    "chars": 475,
    "preview": "# cra-template\n\nThis is the official base template for [Create React App](https://github.com/facebook/create-react-app)."
  },
  {
    "path": "packages/cra-template/package.json",
    "chars": 525,
    "preview": "{\n  \"name\": \"cra-template\",\n  \"version\": \"1.3.0\",\n  \"keywords\": [\n    \"react\",\n    \"create-react-app\",\n    \"template\"\n  "
  },
  {
    "path": "packages/cra-template/template/README.md",
    "chars": 3359,
    "preview": "# Getting Started with Create React App\n\nThis project was bootstrapped with [Create React App](https://github.com/facebo"
  },
  {
    "path": "packages/cra-template/template/gitignore",
    "chars": 310,
    "preview": "# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.\n\n# dependencies\n/node_modules\n/.pn"
  },
  {
    "path": "packages/cra-template/template/public/index.html",
    "chars": 1721,
    "preview": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\" />\n    <link rel=\"icon\" href=\"%PUBLIC_URL%/favicon.i"
  },
  {
    "path": "packages/cra-template/template/public/manifest.json",
    "chars": 492,
    "preview": "{\n  \"short_name\": \"React App\",\n  \"name\": \"Create React App Sample\",\n  \"icons\": [\n    {\n      \"src\": \"favicon.ico\",\n     "
  },
  {
    "path": "packages/cra-template/template/public/robots.txt",
    "chars": 67,
    "preview": "# https://www.robotstxt.org/robotstxt.html\nUser-agent: *\nDisallow:\n"
  },
  {
    "path": "packages/cra-template/template/src/App.css",
    "chars": 564,
    "preview": ".App {\n  text-align: center;\n}\n\n.App-logo {\n  height: 40vmin;\n  pointer-events: none;\n}\n\n@media (prefers-reduced-motion:"
  },
  {
    "path": "packages/cra-template/template/src/App.js",
    "chars": 528,
    "preview": "import logo from './logo.svg';\nimport './App.css';\n\nfunction App() {\n  return (\n    <div className=\"App\">\n      <header "
  },
  {
    "path": "packages/cra-template/template/src/App.test.js",
    "chars": 246,
    "preview": "import { render, screen } from '@testing-library/react';\nimport App from './App';\n\ntest('renders learn react link', () ="
  },
  {
    "path": "packages/cra-template/template/src/index.css",
    "chars": 366,
    "preview": "body {\n  margin: 0;\n  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',\n    'Ubuntu', 'Can"
  },
  {
    "path": "packages/cra-template/template/src/index.js",
    "chars": 535,
    "preview": "import React from 'react';\nimport ReactDOM from 'react-dom/client';\nimport './index.css';\nimport App from './App';\nimpor"
  },
  {
    "path": "packages/cra-template/template/src/reportWebVitals.js",
    "chars": 362,
    "preview": "const reportWebVitals = onPerfEntry => {\n  if (onPerfEntry && onPerfEntry instanceof Function) {\n    import('web-vitals'"
  },
  {
    "path": "packages/cra-template/template/src/setupTests.js",
    "chars": 241,
    "preview": "// jest-dom adds custom jest matchers for asserting on DOM nodes.\n// allows you to do things like:\n// expect(element).to"
  },
  {
    "path": "packages/cra-template/template.json",
    "chars": 335,
    "preview": "{\n  \"package\": {\n    \"dependencies\": {\n      \"@testing-library/dom\": \"^10.4.0\",\n      \"@testing-library/jest-dom\": \"^6.6"
  },
  {
    "path": "packages/cra-template-typescript/README.md",
    "chars": 589,
    "preview": "# cra-template-typescript\n\nThis is the official TypeScript template for [Create React App](https://github.com/facebook/c"
  },
  {
    "path": "packages/cra-template-typescript/package.json",
    "chars": 576,
    "preview": "{\n  \"name\": \"cra-template-typescript\",\n  \"version\": \"1.3.0\",\n  \"keywords\": [\n    \"react\",\n    \"create-react-app\",\n    \"t"
  },
  {
    "path": "packages/cra-template-typescript/template/README.md",
    "chars": 2103,
    "preview": "# Getting Started with Create React App\n\nThis project was bootstrapped with [Create React App](https://github.com/facebo"
  },
  {
    "path": "packages/cra-template-typescript/template/gitignore",
    "chars": 310,
    "preview": "# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.\n\n# dependencies\n/node_modules\n/.pn"
  },
  {
    "path": "packages/cra-template-typescript/template/public/index.html",
    "chars": 1721,
    "preview": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\" />\n    <link rel=\"icon\" href=\"%PUBLIC_URL%/favicon.i"
  },
  {
    "path": "packages/cra-template-typescript/template/public/manifest.json",
    "chars": 492,
    "preview": "{\n  \"short_name\": \"React App\",\n  \"name\": \"Create React App Sample\",\n  \"icons\": [\n    {\n      \"src\": \"favicon.ico\",\n     "
  },
  {
    "path": "packages/cra-template-typescript/template/public/robots.txt",
    "chars": 67,
    "preview": "# https://www.robotstxt.org/robotstxt.html\nUser-agent: *\nDisallow:\n"
  },
  {
    "path": "packages/cra-template-typescript/template/src/App.css",
    "chars": 564,
    "preview": ".App {\n  text-align: center;\n}\n\n.App-logo {\n  height: 40vmin;\n  pointer-events: none;\n}\n\n@media (prefers-reduced-motion:"
  },
  {
    "path": "packages/cra-template-typescript/template/src/App.test.tsx",
    "chars": 273,
    "preview": "import React from 'react';\nimport { render, screen } from '@testing-library/react';\nimport App from './App';\n\ntest('rend"
  },
  {
    "path": "packages/cra-template-typescript/template/src/App.tsx",
    "chars": 556,
    "preview": "import React from 'react';\nimport logo from './logo.svg';\nimport './App.css';\n\nfunction App() {\n  return (\n    <div clas"
  },
  {
    "path": "packages/cra-template-typescript/template/src/index.css",
    "chars": 366,
    "preview": "body {\n  margin: 0;\n  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',\n    'Ubuntu', 'Can"
  },
  {
    "path": "packages/cra-template-typescript/template/src/index.tsx",
    "chars": 554,
    "preview": "import React from 'react';\nimport ReactDOM from 'react-dom/client';\nimport './index.css';\nimport App from './App';\nimpor"
  },
  {
    "path": "packages/cra-template-typescript/template/src/reportWebVitals.ts",
    "chars": 425,
    "preview": "import { ReportHandler } from 'web-vitals';\n\nconst reportWebVitals = (onPerfEntry?: ReportHandler) => {\n  if (onPerfEntr"
  },
  {
    "path": "packages/cra-template-typescript/template/src/setupTests.ts",
    "chars": 241,
    "preview": "// jest-dom adds custom jest matchers for asserting on DOM nodes.\n// allows you to do things like:\n// expect(element).to"
  },
  {
    "path": "packages/cra-template-typescript/template.json",
    "chars": 500,
    "preview": "{\n  \"package\": {\n    \"dependencies\": {\n      \"@testing-library/dom\": \"^10.4.0\",\n      \"@testing-library/jest-dom\": \"^6.6"
  },
  {
    "path": "packages/create-react-app/LICENSE",
    "chars": 1080,
    "preview": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obt"
  },
  {
    "path": "packages/create-react-app/README.md",
    "chars": 403,
    "preview": "# create-react-app\n\nThis package includes the global command for [Create React App](https://github.com/facebook/create-r"
  },
  {
    "path": "packages/create-react-app/__tests__/.eslintrc",
    "chars": 36,
    "preview": "{\n  \"env\": {\n    \"jest\": true\n  }\n}\n"
  },
  {
    "path": "packages/create-react-app/__tests__/getTemplateInstallPackage.test.js",
    "chars": 2715,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/create-react-app/createReactApp.js",
    "chars": 34823,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/create-react-app/index.js",
    "chars": 1861,
    "preview": "#!/usr/bin/env node\n\n/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT "
  },
  {
    "path": "packages/create-react-app/package.json",
    "chars": 1022,
    "preview": "{\n  \"name\": \"create-react-app\",\n  \"version\": \"5.1.0\",\n  \"keywords\": [\n    \"react\"\n  ],\n  \"description\": \"Create React ap"
  },
  {
    "path": "packages/eslint-config-react-app/LICENSE",
    "chars": 1080,
    "preview": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obt"
  },
  {
    "path": "packages/eslint-config-react-app/README.md",
    "chars": 4399,
    "preview": "# eslint-config-react-app\n\nThis package includes the shareable ESLint configuration used by [Create React App](https://g"
  },
  {
    "path": "packages/eslint-config-react-app/base.js",
    "chars": 1079,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/eslint-config-react-app/index.js",
    "chars": 9504,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/eslint-config-react-app/jest.js",
    "chars": 2476,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/eslint-config-react-app/package.json",
    "chars": 1141,
    "preview": "{\n  \"name\": \"eslint-config-react-app\",\n  \"version\": \"7.1.0\",\n  \"description\": \"ESLint configuration used by Create React"
  },
  {
    "path": "packages/react-app-polyfill/LICENSE",
    "chars": 1080,
    "preview": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obt"
  },
  {
    "path": "packages/react-app-polyfill/README.md",
    "chars": 2447,
    "preview": "# react-app-polyfill\n\nThis package includes polyfills for various browsers.\nIt includes minimum requirements and commonl"
  },
  {
    "path": "packages/react-app-polyfill/ie11.js",
    "chars": 1198,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-app-polyfill/ie9.js",
    "chars": 371,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-app-polyfill/jsdom.js",
    "chars": 458,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-app-polyfill/package.json",
    "chars": 717,
    "preview": "{\n  \"name\": \"react-app-polyfill\",\n  \"version\": \"3.0.0\",\n  \"description\": \"Polyfills for various browsers including commo"
  },
  {
    "path": "packages/react-app-polyfill/stable.js",
    "chars": 433,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/FileSizeReporter.js",
    "chars": 4641,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/ForkTsCheckerWarningWebpackPlugin.js",
    "chars": 823,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/ForkTsCheckerWebpackPlugin.js",
    "chars": 321,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/InlineChunkHtmlPlugin.js",
    "chars": 1921,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/InterpolateHtmlPlugin.js",
    "chars": 1445,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/LICENSE",
    "chars": 1080,
    "preview": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obt"
  },
  {
    "path": "packages/react-dev-utils/ModuleNotFoundPlugin.js",
    "chars": 4289,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/ModuleScopePlugin.js",
    "chars": 3511,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/README.md",
    "chars": 13579,
    "preview": "# react-dev-utils\n\nThis package includes some utilities used by [Create React App](https://github.com/facebook/create-re"
  },
  {
    "path": "packages/react-dev-utils/WebpackDevServerUtils.js",
    "chars": 13427,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/__tests__/.eslintrc",
    "chars": 36,
    "preview": "{\n  \"env\": {\n    \"jest\": true\n  }\n}\n"
  },
  {
    "path": "packages/react-dev-utils/__tests__/getCSSModuleLocalIdent.test.js",
    "chars": 1234,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/__tests__/getPublicUrlOrPath.test.js",
    "chars": 4523,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/__tests__/ignoredFiles.test.js",
    "chars": 1540,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/browsersHelper.js",
    "chars": 2507,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/chalk.js",
    "chars": 254,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/checkRequiredFiles.js",
    "chars": 856,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/clearConsole.js",
    "chars": 365,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/crossSpawn.js",
    "chars": 270,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/errorOverlayMiddleware.js",
    "chars": 732,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/eslintFormatter.js",
    "chars": 2808,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/evalSourceMapMiddleware.js",
    "chars": 1552,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/formatWebpackMessages.js",
    "chars": 4268,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/getCSSModuleLocalIdent.js",
    "chars": 1265,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/getCacheIdentifier.js",
    "chars": 584,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/getProcessForPort.js",
    "chars": 2047,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/getPublicUrlOrPath.js",
    "chars": 2069,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/globby.js",
    "chars": 257,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/ignoredFiles.js",
    "chars": 467,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/immer.js",
    "chars": 254,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/launchEditor.js",
    "chars": 19477,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/launchEditorEndpoint.js",
    "chars": 330,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/noopServiceWorkerMiddleware.js",
    "chars": 1360,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/openBrowser.js",
    "chars": 4479,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/openChrome.applescript",
    "chars": 2657,
    "preview": "(*\nCopyright (c) 2015-present, Facebook, Inc.\n\nThis source code is licensed under the MIT license found in the\nLICENSE f"
  },
  {
    "path": "packages/react-dev-utils/package.json",
    "chars": 2309,
    "preview": "{\n  \"name\": \"react-dev-utils\",\n  \"version\": \"12.1.0\",\n  \"description\": \"webpack utilities used by Create React App\",\n  \""
  },
  {
    "path": "packages/react-dev-utils/printBuildError.js",
    "chars": 1233,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/printHostingInstructions.js",
    "chars": 3706,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/redirectServedPathMiddleware.js",
    "chars": 771,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-dev-utils/refreshOverlayInterop.js",
    "chars": 447,
    "preview": "// @remove-on-eject-begin\n/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the"
  },
  {
    "path": "packages/react-dev-utils/webpackHotDevClient.js",
    "chars": 8875,
    "preview": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n"
  },
  {
    "path": "packages/react-error-overlay/.babelrc",
    "chars": 31,
    "preview": "{\n  \"presets\": [\"react-app\"]\n}\n"
  },
  {
    "path": "packages/react-error-overlay/.flowconfig",
    "chars": 183,
    "preview": "[include]\n<PROJECT_ROOT>/src/**/*.js\n\n[ignore]\n.*/node_modules/.*\n.*/.git/.*\n.*/__test__/.*\n.*/fixtures/.*\n\n[libs]\nflow/"
  },
  {
    "path": "packages/react-error-overlay/.gitattributes",
    "chars": 17,
    "preview": "*.js text eol=lf\n"
  },
  {
    "path": "packages/react-error-overlay/.gitignore",
    "chars": 15,
    "preview": "lib/\ncoverage/\n"
  }
]

// ... and 294 more files (download for full content)

About this extraction

This page contains the full source code of the facebook/create-react-app GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 494 files (4.0 MB), approximately 1.1M tokens, and a symbol index with 1688 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!