-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update from upstream repo facebook/create-react-app@master #4
base: master
Are you sure you want to change the base?
Commits on Dec 30, 2019
-
Replace favicon in templates (#8194)
The old favicon was the same as the official react documentation, which is a minor annoyance during development when trying to find the tab you want. The new favicon is just the old with inverted colors. Closes #7957
Configuration menu - View commit details
-
Copy full SHA for c03bb36 - Browse repository at this point
Copy the full SHA c03bb36View commit details
Commits on Jan 12, 2020
-
Configuration menu - View commit details
-
Copy full SHA for fa85f03 - Browse repository at this point
Copy the full SHA fa85f03View commit details -
Configuration menu - View commit details
-
Copy full SHA for 94932be - Browse repository at this point
Copy the full SHA 94932beView commit details
Commits on Jan 16, 2020
-
Configuration menu - View commit details
-
Copy full SHA for f875bb0 - Browse repository at this point
Copy the full SHA f875bb0View commit details
Commits on Jan 21, 2020
-
Configuration menu - View commit details
-
Copy full SHA for a608c5a - Browse repository at this point
Copy the full SHA a608c5aView commit details
Commits on Jan 22, 2020
-
Remove React.FC from Typescript template (#8177)
This removes `React.FC` from the base template for a Typescript project. Long explanation for a small change: `React.FC` is unnecessary: it provides next to no benefits and has a few downsides. (See below.) I see a lot of beginners to TS+React using it, however, and I think that it's usage in this template is a contributing factor to that, as the prominence of this template makes it a de facto source of "best practice". ### Downsides to React.FC/React.FunctionComponent ##### Provides an implicit definition of `children` Defining a component with `React.FC` causes it to implicitly take `children` (of type `ReactNode`). It means that all components accept children, even if they're not supposed to, allowing code like: ```ts const App: React.FC = () => { /*... */ }; const Example = () => { <App><div>Unwanted children</div></App> } ``` This isn't a run-time error, but it is a mistake and one that would be caught by Typescript if not for `React.FC`. ##### Doesn't support generics. I can define a generic component like: ```ts type GenericComponentProps<T> = { prop: T callback: (t: T) => void } const GenericComponent = <T>(props: GenericComponentProps<T>) => {/*...*/} ``` But it's not possible when using `React.FC` - there's no way to preserve the unresolved generic `T` in the type returned by `React.FC`. ```ts const GenericComponent: React.FC</* ??? */> = <T>(props: GenericComponentProps<T>) => {/*...*/} ``` ##### Makes "component as namespace pattern" more awkward. It's a somewhat popular pattern to use a component as a namespace for related components (usually children): ```jsx <Select> <Select.Item /> </Select> ``` This is possible, but awkward, with `React.FC`: ```tsx const Select: React.FC<SelectProps> & { Item: React.FC<ItemProps> } = (props) => {/* ... */ } Select.Item = (props) => { /*...*/ } ``` but "just works" without `React.FC`: ```tsx const Select = (props: SelectProps) => {/* ... */} Select.Item = (props) => { /*...*/ } ``` ##### Doesn't work correctly with defaultProps This is a fairly moot point as in both cases it's probably better to use ES6 default arguments, but... ```tsx type ComponentProps = { name: string; } const Component = ({ name }: ComponentProps) => (<div> {name.toUpperCase()} /* Safe since name is required */ </div>); Component.defaultProps = { name: "John" }; const Example = () => (<Component />) /* Safe to omit since name has a default value */ ``` This compiles correctly. Any approach with `React.FC` will be slightly wrong: either `React.FC<{name: string}>` will make the prop required by consumers, when it should be optional, or `React.FC<{name?: string}>` will cause `name.toUpperCase()` to be a type error. There's no way to replicate the "internally required, externally optional" behavior which is desired. ##### It's as long, or longer than the alternative: (especially longer if you use `FunctionalComponent`): Not a huge point, but it isn't even shorter to use `React.FC` ```ts const C1: React.FC<CProps> = (props) => { } const C2 = (props: CProps) => {}; ``` ### Benefits of React.FC ##### Provides an explicit return type The only benefit I really see to `React.FC` (unless you think that implicit `children` is a good thing) is that it specifies the return type, which catches mistakes like: ```ts const Component = () => { return undefined; // components aren't allowed to return undefined, just `null` } ``` In practice, I think this is fine, as it'll be caught as soon as you try to use it: ```ts const Example = () => <Component />; // Error here, due to Component returning the wrong thing ``` But even with explicit type annotations, `React.FC` still isn't saving very much boilerplate: ```ts const Component1 = (props: ComponentProps): ReactNode => { /*...*/ } const Component2: FC<ComponentProps> = (props) => { /*...*/ } ```
Configuration menu - View commit details
-
Copy full SHA for dada035 - Browse repository at this point
Copy the full SHA dada035View commit details
Commits on Jan 23, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 4bf14fa - Browse repository at this point
Copy the full SHA 4bf14faView commit details
Commits on Jan 30, 2020
-
Remove outdated babel plugins (#8353)
Updates dependencies and removes babel plugins that are now covered by `@babel/preset-env`. Co-authored-by: hdineen <hdineen@hubspot.com>
Configuration menu - View commit details
-
Copy full SHA for b855da5 - Browse repository at this point
Copy the full SHA b855da5View commit details -
Configuration menu - View commit details
-
Copy full SHA for ddcb7d5 - Browse repository at this point
Copy the full SHA ddcb7d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 720d90b - Browse repository at this point
Copy the full SHA 720d90bView commit details -
Update custom template docs with instructions for testing custom temp…
…late locally (#8092) Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for cafd602 - Browse repository at this point
Copy the full SHA cafd602View commit details -
Update setting-up-your-editor.md (#8247)
`Auto Fix is enabled by default. Use the single string form.` warning is shown in `.vscode/settings.json` due to changes in vscode-eslint. As autoFix is set to default, object format in `eslint.validate` is deprecated.
Configuration menu - View commit details
-
Copy full SHA for ca9c61e - Browse repository at this point
Copy the full SHA ca9c61eView commit details -
Remove outdated docs regarding vscode eslint extension and type… (#8307)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for dd0df73 - Browse repository at this point
Copy the full SHA dd0df73View commit details -
Configuration menu - View commit details
-
Copy full SHA for e530598 - Browse repository at this point
Copy the full SHA e530598View commit details -
Configuration menu - View commit details
-
Copy full SHA for ed162a3 - Browse repository at this point
Copy the full SHA ed162a3View commit details
Commits on Jan 31, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 6ee4e91 - Browse repository at this point
Copy the full SHA 6ee4e91View commit details -
Configuration menu - View commit details
-
Copy full SHA for 03018d7 - Browse repository at this point
Copy the full SHA 03018d7View commit details -
docs: Add troubleshooting documentation on ENOSPC (#8380)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 4da41b4 - Browse repository at this point
Copy the full SHA 4da41b4View commit details -
Configuration menu - View commit details
-
Copy full SHA for a7b8732 - Browse repository at this point
Copy the full SHA a7b8732View commit details -
- babel-plugin-named-asset-import@0.3.6 - babel-preset-react-app@9.1.1 - cra-template-typescript@1.0.1 - cra-template@1.0.1 - create-react-app@3.3.1 - eslint-config-react-app@5.2.0 - react-app-polyfill@1.0.6 - react-dev-utils@10.1.0 - react-error-overlay@6.0.5 - react-scripts@3.3.1
Configuration menu - View commit details
-
Copy full SHA for d7c6842 - Browse repository at this point
Copy the full SHA d7c6842View commit details -
Configuration menu - View commit details
-
Copy full SHA for fb9745e - Browse repository at this point
Copy the full SHA fb9745eView commit details -
Update commit message to use imperative mood (#8377)
Why: * As per best practice: https://git.kernel.org/pub/scm/git/git.git/tree/Documentation/SubmittingPatches#n135 See also: https://chris.beams.io/posts/git-commit/#imperative
Configuration menu - View commit details
-
Copy full SHA for d9e05f9 - Browse repository at this point
Copy the full SHA d9e05f9View commit details -
Wider Chromium support for openBrowser (#8367)
* Expands scope of openBrowser tab control Adjust openChrome.applescript to allow manipulation of other Chromium-based browsers (defaulting to Chrome). Requires list of compatible browsers to try in openBrowser.js * Fix typo * Remove Safari
Matthew Curtis authoredJan 31, 2020 Configuration menu - View commit details
-
Copy full SHA for d2de54b - Browse repository at this point
Copy the full SHA d2de54bView commit details -
fix(test): force install npm in e2e-behaviour (#8402)
This will fix e2e-behaviour on macos Related: npm/cli#611 (comment)
Configuration menu - View commit details
-
Copy full SHA for 325e599 - Browse repository at this point
Copy the full SHA 325e599View commit details -
setupTestFrameworkScriptFile is deprecated (#8390)
* setupTestFrameworkScriptFile is deprecated __Note:_ `_setupTestFrameworkScriptFile_` _is deprecated in favor of_ `_setupFilesAfterEnv_`_.__ ref: https://jestjs.io/docs/en/configuration#setupfilesafterenv-array * Update docusaurus/docs/running-tests.md Co-Authored-By: Simen Bekkhus <sbekkhus91@gmail.com> Co-authored-by: Simen Bekkhus <sbekkhus91@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 0db04ec - Browse repository at this point
Copy the full SHA 0db04ecView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1959131 - Browse repository at this point
Copy the full SHA 1959131View commit details -
Update public folder usage docs to clarify globals (#8299)
Added the relevant topic linked directly, instead of saying it's just in the next section. Adjusted the text so it sounds more like a recommendation rather than a requirement. The topic linked is basically explainer to how you'd reference it using the global window object and ways to avoid linter errors. Thus I used 'reference' to give users a hint of what it the linked page would be for.
Configuration menu - View commit details
-
Copy full SHA for 9233caf - Browse repository at this point
Copy the full SHA 9233cafView commit details -
Configuration menu - View commit details
-
Copy full SHA for 84d8b14 - Browse repository at this point
Copy the full SHA 84d8b14View commit details -
Support JetBrains Rider IDE as an editor (#7948)
Rider is JetBrains .NET IDE, which supports the React plugin identically to other JetBrains IDEs such as Idea and WebStorm.
Configuration menu - View commit details
-
Copy full SHA for cc985d0 - Browse repository at this point
Copy the full SHA cc985d0View commit details -
Enable custom sockjs pathname for hot reloading server. (#7750)
* Enable custom sockjs pathname for hot reloading server. * Update docusaurus/docs/advanced-configuration.md Co-Authored-By: Brody McKee <mrmckeb@users.noreply.github.com> * let WDS_SOCKET_PATH be undefined * adding env variables for sockHost and sockPort options Co-authored-by: Brody McKee <mrmckeb@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 822422c - Browse repository at this point
Copy the full SHA 822422cView commit details -
Add option to provide custom ssl certificates during development (#5845)
* Add option to provide custom SSL certificates when using HTTPS * Update documentation with custom HTTPS certs * Improve certificate validation and move to its own file * Update https in development docs Co-Authored-By: Brody McKee <mrmckeb@users.noreply.github.com> * Add custom cert example to docs * Rename https file and update error message * Include original error message when custom ssl cert is invalid * Add chalk to react-scripts dependencies * Bump docs version to say that the new config will be available in 3.2.0 * Remove chalk dependency * Update custom ssl version to 3.4.0 in docs * Remove version from custom ssl certificate docs Co-authored-by: Brody McKee <mrmckeb@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 0299c0e - Browse repository at this point
Copy the full SHA 0299c0eView commit details -
Handle service worker error in Firefox (#8272)
* Handle service worker error in Firefox See https://bugzilla.mozilla.org/show_bug.cgi?id=1429714 for more details. * Update serviceWorker.js
Configuration menu - View commit details
-
Copy full SHA for 3190e4f - Browse repository at this point
Copy the full SHA 3190e4fView commit details
Commits on Feb 2, 2020
-
feat(react-scripts): allow PUBLIC_URL in develoment mode (#7259)
Co-authored-by: Eric Clemmons <eric@smarterspam.com> Co-authored-by: Alex Guerra <alex@heyimalex.com> Co-authored-by: Kelly <kelly.milligan@gmail.com> Co-authored-by: Eric Clemmons <eric@smarterspam.com> Co-authored-by: Alex Guerra <alex@heyimalex.com> Co-authored-by: Kelly <kelly.milligan@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 1cbc6f7 - Browse repository at this point
Copy the full SHA 1cbc6f7View commit details
Commits on Feb 3, 2020
-
Change arrow functions to function declarations (#8412)
- The JavaScript template uses a function declaration to define the component, the TypeScript template and a page of the documentation used arrow functions. Changed it to use function declarations for consistency and readability.
Configuration menu - View commit details
-
Copy full SHA for 687c4eb - Browse repository at this point
Copy the full SHA 687c4ebView commit details
Commits on Feb 6, 2020
-
Configuration menu - View commit details
-
Copy full SHA for cd2469e - Browse repository at this point
Copy the full SHA cd2469eView commit details
Commits on Feb 8, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 767aa18 - Browse repository at this point
Copy the full SHA 767aa18View commit details -
Downgrade chalk for ie 11 support (#8439)
* Downgrade chalk for ie 11 support * Update lockfile
Configuration menu - View commit details
-
Copy full SHA for eb8e7be - Browse repository at this point
Copy the full SHA eb8e7beView commit details -
fix(react-scripts): do not redirect served path if request may proxy (#…
Configuration menu - View commit details
-
Copy full SHA for d45823c - Browse repository at this point
Copy the full SHA d45823cView commit details
Commits on Feb 10, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 865ea05 - Browse repository at this point
Copy the full SHA 865ea05View commit details
Commits on Feb 11, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 589b41a - Browse repository at this point
Copy the full SHA 589b41aView commit details
Commits on Feb 13, 2020
-
Correct webpack name casing (#8475)
webpack should always be written in lower-case, according to webpack's branding guidelines https://webpack.js.org/branding
Configuration menu - View commit details
-
Copy full SHA for 4784997 - Browse repository at this point
Copy the full SHA 4784997View commit details
Commits on Feb 14, 2020
-
Configuration menu - View commit details
-
Copy full SHA for e579de1 - Browse repository at this point
Copy the full SHA e579de1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ccee88 - Browse repository at this point
Copy the full SHA 5ccee88View commit details -
- cra-template-typescript@1.0.2 - cra-template@1.0.2 - create-react-app@3.4.0 - react-dev-utils@10.2.0 - react-error-overlay@6.0.6 - react-scripts@3.4.0
Configuration menu - View commit details
-
Copy full SHA for 8b0dd54 - Browse repository at this point
Copy the full SHA 8b0dd54View commit details
Commits on Feb 19, 2020
-
Configuration menu - View commit details
-
Copy full SHA for af926d5 - Browse repository at this point
Copy the full SHA af926d5View commit details -
Closes webpack dev server and exits process on "end" stdin (#7203)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7e6d6cd - Browse repository at this point
Copy the full SHA 7e6d6cdView commit details -
Widen eslint-config-react-app peer dependency versions (#7790)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 038e6fa - Browse repository at this point
Copy the full SHA 038e6faView commit details
Commits on Feb 20, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 2030ee1 - Browse repository at this point
Copy the full SHA 2030ee1View commit details
Commits on Feb 29, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 7d3b72c - Browse repository at this point
Copy the full SHA 7d3b72cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ba0ccb - Browse repository at this point
Copy the full SHA 8ba0ccbView commit details
Commits on Mar 1, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 4d26208 - Browse repository at this point
Copy the full SHA 4d26208View commit details
Commits on Mar 4, 2020
-
Fix proxying API request docs (#8515)
The http-proxy-middleware package has made a major version upgraded and introduced a breaking change. This fixes the "Configuring the Proxy Manually" documentation to match the latest version.
Configuration menu - View commit details
-
Copy full SHA for 3f699fd - Browse repository at this point
Copy the full SHA 3f699fdView commit details
Commits on Mar 9, 2020
-
Configuration menu - View commit details
-
Copy full SHA for a452ddc - Browse repository at this point
Copy the full SHA a452ddcView commit details
Commits on Mar 10, 2020
-
Add React.StrictMode to default templates (#8558)
Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6adb82a - Browse repository at this point
Copy the full SHA 6adb82aView commit details
Commits on Mar 20, 2020
-
Configuration menu - View commit details
-
Copy full SHA for d5b527f - Browse repository at this point
Copy the full SHA d5b527fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7641a3c - Browse repository at this point
Copy the full SHA 7641a3cView commit details
Commits on Mar 21, 2020
-
- babel-preset-react-app@9.1.2 - cra-template-typescript@1.0.3 - cra-template@1.0.3 - create-react-app@3.4.1 - eslint-config-react-app@5.2.1 - react-dev-utils@10.2.1 - react-error-overlay@6.0.7 - react-scripts@3.4.1
Configuration menu - View commit details
-
Copy full SHA for d2f813f - Browse repository at this point
Copy the full SHA d2f813fView commit details
Commits on Mar 24, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 79dbc33 - Browse repository at this point
Copy the full SHA 79dbc33View commit details
Commits on Mar 27, 2020
-
Configuration menu - View commit details
-
Copy full SHA for edc671e - Browse repository at this point
Copy the full SHA edc671eView commit details
Commits on Apr 4, 2020
-
Configuration menu - View commit details
-
Copy full SHA for bc41892 - Browse repository at this point
Copy the full SHA bc41892View commit details -
Configuration menu - View commit details
-
Copy full SHA for 56d34c0 - Browse repository at this point
Copy the full SHA 56d34c0View commit details -
Configuration menu - View commit details
-
Copy full SHA for c7352c7 - Browse repository at this point
Copy the full SHA c7352c7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4cbb003 - Browse repository at this point
Copy the full SHA 4cbb003View commit details -
Configuration menu - View commit details
-
Copy full SHA for e0b179c - Browse repository at this point
Copy the full SHA e0b179cView commit details
Commits on Apr 6, 2020
-
Add experimental react-refresh support (#8582)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for c5b96c2 - Browse repository at this point
Copy the full SHA c5b96c2View commit details
Commits on Apr 7, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 53cace5 - Browse repository at this point
Copy the full SHA 53cace5View commit details -
Configuration menu - View commit details
-
Copy full SHA for f0f4d5b - Browse repository at this point
Copy the full SHA f0f4d5bView commit details -
Configuration menu - View commit details
-
Copy full SHA for d80e533 - Browse repository at this point
Copy the full SHA d80e533View commit details -
Bump acorn from 6.4.0 to 6.4.1 in /docusaurus/website (#8656)
Bumps [acorn](https://github.com/acornjs/acorn) from 6.4.0 to 6.4.1. - [Release notes](https://github.com/acornjs/acorn/releases) - [Commits](acornjs/acorn@6.4.0...6.4.1) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for a4fa63f - Browse repository at this point
Copy the full SHA a4fa63fView commit details
Commits on Apr 15, 2020
-
Don't use webpack multi entry unnecessarily (#8834)
Passing an array with a single entry is not equivalent. This causes Webpack to generate another wrapper module around the entry. This is just unnecessary overhead and bytes.
Configuration menu - View commit details
-
Copy full SHA for e89f153 - Browse repository at this point
Copy the full SHA e89f153View commit details
Commits on Apr 27, 2020
-
Widen eslint-config-react-app peer dependency versions (#8892)
See #7790 for a previous similar PR.
Configuration menu - View commit details
-
Copy full SHA for 855a984 - Browse repository at this point
Copy the full SHA 855a984View commit details
Commits on Apr 28, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 3771237 - Browse repository at this point
Copy the full SHA 3771237View commit details
Commits on May 3, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 9cc1bdf - Browse repository at this point
Copy the full SHA 9cc1bdfView commit details
Commits on May 4, 2020
-
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 9904075 - Browse repository at this point
Copy the full SHA 9904075View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8b0d21f - Browse repository at this point
Copy the full SHA 8b0d21fView commit details -
Configuration menu - View commit details
-
Copy full SHA for fa93437 - Browse repository at this point
Copy the full SHA fa93437View commit details -
Configuration menu - View commit details
-
Copy full SHA for 99f1b6b - Browse repository at this point
Copy the full SHA 99f1b6bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2975939 - Browse repository at this point
Copy the full SHA 2975939View commit details -
Configuration menu - View commit details
-
Copy full SHA for b37cff9 - Browse repository at this point
Copy the full SHA b37cff9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 790fba9 - Browse repository at this point
Copy the full SHA 790fba9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4974a20 - Browse repository at this point
Copy the full SHA 4974a20View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c2f2d4 - Browse repository at this point
Copy the full SHA 3c2f2d4View commit details -
Upgrade testing-library packages (#8406)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5d437b8 - Browse repository at this point
Copy the full SHA 5d437b8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5a019e6 - Browse repository at this point
Copy the full SHA 5a019e6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2473a73 - Browse repository at this point
Copy the full SHA 2473a73View commit details -
Configuration menu - View commit details
-
Copy full SHA for 62e8e3d - Browse repository at this point
Copy the full SHA 62e8e3dView commit details
Commits on May 5, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 6a7aaa2 - Browse repository at this point
Copy the full SHA 6a7aaa2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 408c065 - Browse repository at this point
Copy the full SHA 408c065View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1f81469 - Browse repository at this point
Copy the full SHA 1f81469View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b28c60 - Browse repository at this point
Copy the full SHA 6b28c60View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9123aae - Browse repository at this point
Copy the full SHA 9123aaeView commit details
Commits on May 8, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 0cfccd8 - Browse repository at this point
Copy the full SHA 0cfccd8View commit details -
bump webpack-dev-server to 3.11.0 (#8975)
Co-authored-by: Marc Hassan <marc@unqork.com>
Configuration menu - View commit details
-
Copy full SHA for a0b3753 - Browse repository at this point
Copy the full SHA a0b3753View commit details
Commits on May 13, 2020
-
Configuration menu - View commit details
-
Copy full SHA for f5c3bdb - Browse repository at this point
Copy the full SHA f5c3bdbView commit details
Commits on May 29, 2020
-
Configuration menu - View commit details
-
Copy full SHA for d97fbad - Browse repository at this point
Copy the full SHA d97fbadView commit details -
Fix dotenv file loading order (#9037)
* Fix dotenv file loading order * tests: fix failing env tests * tests: fix more failing tests Co-authored-by: Brody McKee <mrmckeb@hotmail.com>
Configuration menu - View commit details
-
Copy full SHA for 26a1c7f - Browse repository at this point
Copy the full SHA 26a1c7fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 285f9cb - Browse repository at this point
Copy the full SHA 285f9cbView commit details
Commits on May 30, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 461775a - Browse repository at this point
Copy the full SHA 461775aView commit details
Commits on May 31, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 78e13b0 - Browse repository at this point
Copy the full SHA 78e13b0View commit details
Commits on Jun 1, 2020
-
* Update Jest to 26 * Upgrade to Jest 26.0.1 * Use jest-circus test runner by default * Try resolving test runner to fix behavior tests * Run TypeScript verification in new context * Delete globalThis if polyfilled
Configuration menu - View commit details
-
Copy full SHA for c87ab79 - Browse repository at this point
Copy the full SHA c87ab79View commit details
Commits on Jun 6, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 538d527 - Browse repository at this point
Copy the full SHA 538d527View commit details
Commits on Jun 7, 2020
-
Add support for absolute paths when using url() in CSS (#7937)
* Support scss absolute path resolution for url() Adding resolve-url-loader broke all apps using scss with centralized assets folder and all url(./assets/*.png) broke (#7023). This change allows apps to use url(/assets/*.png) and it would map to src/assets/*.png * test: Add global scss assets test
Configuration menu - View commit details
-
Copy full SHA for fa648da - Browse repository at this point
Copy the full SHA fa648daView commit details
Commits on Jun 10, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 2814124 - Browse repository at this point
Copy the full SHA 2814124View commit details -
Configuration menu - View commit details
-
Copy full SHA for a2dac9e - Browse repository at this point
Copy the full SHA a2dac9eView commit details
Commits on Jun 11, 2020
-
Add performance relayer + documentation (web-vitals) (#9116)
Co-authored-by: Brody McKee <mrmckeb@users.noreply.github.com> Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 8fda779 - Browse repository at this point
Copy the full SHA 8fda779View commit details
Commits on Jun 14, 2020
-
Update deployment docs for Azure Static Web Apps (#9042)
Co-authored-by: Minh Nguyen <minhnguyenxx@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for b389928 - Browse repository at this point
Copy the full SHA b389928View commit details -
Configuration menu - View commit details
-
Copy full SHA for 41a1088 - Browse repository at this point
Copy the full SHA 41a1088View commit details
Commits on Jun 20, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 71facad - Browse repository at this point
Copy the full SHA 71facadView commit details -
Configuration menu - View commit details
-
Copy full SHA for 697dffe - Browse repository at this point
Copy the full SHA 697dffeView commit details -
Configuration menu - View commit details
-
Copy full SHA for fdbde1f - Browse repository at this point
Copy the full SHA fdbde1fView commit details
Commits on Jun 23, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 6223fd9 - Browse repository at this point
Copy the full SHA 6223fd9View commit details
Commits on Jun 26, 2020
-
The root domain, chaijs.com, does not serve a valid certificate and gives a browser warning.
Configuration menu - View commit details
-
Copy full SHA for abe2369 - Browse repository at this point
Copy the full SHA abe2369View commit details
Commits on Jul 2, 2020
-
Explain how to uninstall create-react-app globally (#9244)
* Explain how to uninstall create-react-app globally * Add uninstallation intructions for yarn
Configuration menu - View commit details
-
Copy full SHA for 2da5517 - Browse repository at this point
Copy the full SHA 2da5517View commit details
Commits on Jul 16, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 759696d - Browse repository at this point
Copy the full SHA 759696dView commit details
Commits on Jul 22, 2020
-
Switch to the Workbox InjectManifest plugin (#9205)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 8e720ae - Browse repository at this point
Copy the full SHA 8e720aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for d1f32c4 - Browse repository at this point
Copy the full SHA d1f32c4View commit details -
feat: Update ESLint dependencies (#9251)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 2bef8a5 - Browse repository at this point
Copy the full SHA 2bef8a5View commit details
Commits on Jul 23, 2020
-
Configuration menu - View commit details
-
Copy full SHA for bdae9b6 - Browse repository at this point
Copy the full SHA bdae9b6View commit details
Commits on Jul 27, 2020
-
Configuration menu - View commit details
-
Copy full SHA for a01b1c5 - Browse repository at this point
Copy the full SHA a01b1c5View commit details
Commits on Jul 28, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 66bf7df - Browse repository at this point
Copy the full SHA 66bf7dfView commit details
Commits on Jul 29, 2020
-
Configuration menu - View commit details
-
Copy full SHA for a79d8b8 - Browse repository at this point
Copy the full SHA a79d8b8View commit details
Commits on Jul 30, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 7ab0116 - Browse repository at this point
Copy the full SHA 7ab0116View commit details
Commits on Aug 1, 2020
-
Updated README.md Templates to Follow ESLint Markdown Rules (#9241)
Rafael Quijada authoredAug 1, 2020 Configuration menu - View commit details
-
Copy full SHA for 58db16b - Browse repository at this point
Copy the full SHA 58db16bView commit details -
Configuration menu - View commit details
-
Copy full SHA for de27bcf - Browse repository at this point
Copy the full SHA de27bcfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a6ef92 - Browse repository at this point
Copy the full SHA 1a6ef92View commit details
Commits on Aug 2, 2020
-
Configuration menu - View commit details
-
Copy full SHA for aeaf575 - Browse repository at this point
Copy the full SHA aeaf575View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5bd6e73 - Browse repository at this point
Copy the full SHA 5bd6e73View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c2e224 - Browse repository at this point
Copy the full SHA 2c2e224View commit details
Commits on Aug 5, 2020
-
Configuration menu - View commit details
-
Copy full SHA for ebab256 - Browse repository at this point
Copy the full SHA ebab256View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3cf2b06 - Browse repository at this point
Copy the full SHA 3cf2b06View commit details -
Configuration menu - View commit details
-
Copy full SHA for f86cf44 - Browse repository at this point
Copy the full SHA f86cf44View commit details -
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com> Co-authored-by: Ian Sutherland <ian@iansutherland.ca>
Configuration menu - View commit details
-
Copy full SHA for 42dcf79 - Browse repository at this point
Copy the full SHA 42dcf79View commit details -
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6cd3826 - Browse repository at this point
Copy the full SHA 6cd3826View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5036825 - Browse repository at this point
Copy the full SHA 5036825View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3d74b79 - Browse repository at this point
Copy the full SHA 3d74b79View commit details
Commits on Aug 11, 2020
-
Configuration menu - View commit details
-
Copy full SHA for c8ea284 - Browse repository at this point
Copy the full SHA c8ea284View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e41ca0 - Browse repository at this point
Copy the full SHA 5e41ca0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e703a5 - Browse repository at this point
Copy the full SHA 5e703a5View commit details
Commits on Aug 12, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 8e761d1 - Browse repository at this point
Copy the full SHA 8e761d1View commit details
Commits on Aug 17, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 7763737 - Browse repository at this point
Copy the full SHA 7763737View commit details
Commits on Aug 24, 2020
-
Added CRA logo in README.md (#9363)
* Added React logo in README.md * Added React logo in README file that makes looks nicer now. * Added CRA Logo in README.md that looks nicer * Replacing React Logo with CRA Logo instead Co-authored-by: Eddie Monge Jr <eddiemonge@users.noreply.github.com> * Update README.md Co-authored-by: Eddie Monge Jr <eddiemonge@users.noreply.github.com> Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for edfc30a - Browse repository at this point
Copy the full SHA edfc30aView commit details
Commits on Aug 28, 2020
-
Configuration menu - View commit details
-
Copy full SHA for cf74eb9 - Browse repository at this point
Copy the full SHA cf74eb9View commit details
Commits on Sep 9, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 97695bc - Browse repository at this point
Copy the full SHA 97695bcView commit details
Commits on Sep 13, 2020
-
Configuration menu - View commit details
-
Copy full SHA for e258532 - Browse repository at this point
Copy the full SHA e258532View commit details
Commits on Sep 14, 2020
-
Configuration menu - View commit details
-
Copy full SHA for cef668a - Browse repository at this point
Copy the full SHA cef668aView commit details -
Update template dependencies to latest version (#9526)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 2a8237c - Browse repository at this point
Copy the full SHA 2a8237cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6abc7a5 - Browse repository at this point
Copy the full SHA 6abc7a5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 22b61c9 - Browse repository at this point
Copy the full SHA 22b61c9View commit details -
Configuration menu - View commit details
-
Copy full SHA for ce1e2af - Browse repository at this point
Copy the full SHA ce1e2afView commit details -
Configuration menu - View commit details
-
Copy full SHA for 65d8eb2 - Browse repository at this point
Copy the full SHA 65d8eb2View commit details
Commits on Sep 16, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 552c7a9 - Browse repository at this point
Copy the full SHA 552c7a9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 730438c - Browse repository at this point
Copy the full SHA 730438cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 14b7868 - Browse repository at this point
Copy the full SHA 14b7868View commit details -
Configuration menu - View commit details
-
Copy full SHA for 930b5db - Browse repository at this point
Copy the full SHA 930b5dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 13e0d1c - Browse repository at this point
Copy the full SHA 13e0d1cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 025f273 - Browse repository at this point
Copy the full SHA 025f273View commit details
Commits on Sep 30, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 7e4949a - Browse repository at this point
Copy the full SHA 7e4949aView commit details -
Configuration menu - View commit details
-
Copy full SHA for d5c0fe2 - Browse repository at this point
Copy the full SHA d5c0fe2View commit details
Commits on Oct 14, 2020
-
Add AVIF image support (#9611)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6a51dcd - Browse repository at this point
Copy the full SHA 6a51dcdView commit details
Commits on Oct 15, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 1f2d387 - Browse repository at this point
Copy the full SHA 1f2d387View commit details
Commits on Oct 16, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 6f3e32e - Browse repository at this point
Copy the full SHA 6f3e32eView commit details
Commits on Oct 20, 2020
-
Replace deprecated eslint-loader with eslint-webpack-plugin (#9751)
* Replace deprecated eslint-loader by eslint-webpack-plugin * Update eslintFormatter for eslint-webpack-plugin * fix: always enable jsx-uses-react Co-authored-by: Brody McKee <mrmckeb@hotmail.com>
Configuration menu - View commit details
-
Copy full SHA for d07b7d0 - Browse repository at this point
Copy the full SHA d07b7d0View commit details -
Configuration menu - View commit details
-
Copy full SHA for b1f8536 - Browse repository at this point
Copy the full SHA b1f8536View commit details -
Bump resolve-url-loader version (#9841)
* Bump resolve-url-loader version * Unpin resolve-url-loader
Configuration menu - View commit details
-
Copy full SHA for 7965594 - Browse repository at this point
Copy the full SHA 7965594View commit details
Commits on Oct 21, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 0a93e32 - Browse repository at this point
Copy the full SHA 0a93e32View commit details
Commits on Oct 22, 2020
-
Configuration menu - View commit details
-
Copy full SHA for ed919b1 - Browse repository at this point
Copy the full SHA ed919b1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 10fa972 - Browse repository at this point
Copy the full SHA 10fa972View commit details -
Configuration menu - View commit details
-
Copy full SHA for 329f392 - Browse repository at this point
Copy the full SHA 329f392View commit details -
Configuration menu - View commit details
-
Copy full SHA for 85ab02b - Browse repository at this point
Copy the full SHA 85ab02bView commit details -
feat: Update all dependencies (#9857)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for fe785b2 - Browse repository at this point
Copy the full SHA fe785b2View commit details
Commits on Oct 23, 2020
-
Configuration menu - View commit details
-
Copy full SHA for e63de79 - Browse repository at this point
Copy the full SHA e63de79View commit details -
Configuration menu - View commit details
-
Copy full SHA for d61347d - Browse repository at this point
Copy the full SHA d61347dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4bc639c - Browse repository at this point
Copy the full SHA 4bc639cView commit details -
Configuration menu - View commit details
-
Copy full SHA for f2aef41 - Browse repository at this point
Copy the full SHA f2aef41View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b1161b - Browse repository at this point
Copy the full SHA 2b1161bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 014ca01 - Browse repository at this point
Copy the full SHA 014ca01View commit details -
Configuration menu - View commit details
-
Copy full SHA for af616ab - Browse repository at this point
Copy the full SHA af616abView commit details -
Configuration menu - View commit details
-
Copy full SHA for 523b416 - Browse repository at this point
Copy the full SHA 523b416View commit details -
Configuration menu - View commit details
-
Copy full SHA for 95265c3 - Browse repository at this point
Copy the full SHA 95265c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for d23d615 - Browse repository at this point
Copy the full SHA d23d615View commit details -
Configuration menu - View commit details
-
Copy full SHA for 88ca4f6 - Browse repository at this point
Copy the full SHA 88ca4f6View commit details -
- babel-plugin-named-asset-import@0.3.7 - babel-preset-react-app@10.0.0 - confusing-browser-globals@1.0.10 - cra-template-typescript@1.1.0 - cra-template@1.1.0 - create-react-app@4.0.0 - eslint-config-react-app@6.0.0 - react-app-polyfill@2.0.0 - react-dev-utils@11.0.0 - react-error-overlay@6.0.8 - react-scripts@4.0.0
Configuration menu - View commit details
-
Copy full SHA for ed95893 - Browse repository at this point
Copy the full SHA ed95893View commit details
Commits on Oct 26, 2020
-
Configuration menu - View commit details
-
Copy full SHA for ceeb654 - Browse repository at this point
Copy the full SHA ceeb654View commit details -
Configuration menu - View commit details
-
Copy full SHA for c06f16c - Browse repository at this point
Copy the full SHA c06f16cView commit details -
Configuration menu - View commit details
-
Copy full SHA for b5fdadd - Browse repository at this point
Copy the full SHA b5fdaddView commit details -
fix: page doesn't get refreshed when FAST_REFRESH=false (#9884)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7e48117 - Browse repository at this point
Copy the full SHA 7e48117View commit details -
Configuration menu - View commit details
-
Copy full SHA for 027b03b - Browse repository at this point
Copy the full SHA 027b03bView commit details
Commits on Oct 28, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 545d460 - Browse repository at this point
Copy the full SHA 545d460View commit details
Commits on Oct 30, 2020
-
Fix noFallthroughCasesInSwitch/jsx object is not extensible (#9921)
Co-authored-by: Konstantin Simeonov <kon.simeonov@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 3a98ed1 - Browse repository at this point
Copy the full SHA 3a98ed1View commit details
Commits on Nov 1, 2020
-
Configuration menu - View commit details
-
Copy full SHA for aec42e2 - Browse repository at this point
Copy the full SHA aec42e2View commit details
Commits on Nov 10, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 4e97dc7 - Browse repository at this point
Copy the full SHA 4e97dc7View commit details -
docs: add React Testing Library as a library requiring jsdom (#10052)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for aafe8af - Browse repository at this point
Copy the full SHA aafe8afView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5867170 - Browse repository at this point
Copy the full SHA 5867170View commit details
Commits on Nov 11, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 8f03b91 - Browse repository at this point
Copy the full SHA 8f03b91View commit details
Commits on Nov 17, 2020
-
replace inquirer with prompts (#10083)
- remove `react-dev-utils/inquirer` public import
Configuration menu - View commit details
-
Copy full SHA for 8bf050a - Browse repository at this point
Copy the full SHA 8bf050aView commit details
Commits on Nov 23, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 90a0898 - Browse repository at this point
Copy the full SHA 90a0898View commit details -
Configuration menu - View commit details
-
Copy full SHA for 98a886d - Browse repository at this point
Copy the full SHA 98a886dView commit details -
- cra-template-typescript@1.1.1 - cra-template@1.1.1 - create-react-app@4.0.1 - react-dev-utils@11.0.1 - react-scripts@4.0.1
Configuration menu - View commit details
-
Copy full SHA for de8b2b3 - Browse repository at this point
Copy the full SHA de8b2b3View commit details
Commits on Nov 25, 2020
-
chore: bump web-vital dependency version (#10143)
Sahil Purav authoredNov 25, 2020 Configuration menu - View commit details
-
Copy full SHA for 9a79df2 - Browse repository at this point
Copy the full SHA 9a79df2View commit details -
chore: bump typescript version (#10141)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for be6c193 - Browse repository at this point
Copy the full SHA be6c193View commit details
Commits on Nov 26, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 9b08e3c - Browse repository at this point
Copy the full SHA 9b08e3cView commit details
Commits on Dec 4, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 91e28a4 - Browse repository at this point
Copy the full SHA 91e28a4View commit details
Commits on Dec 8, 2020
-
Upgrade @svgr/webpack to fix build error (#10213)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 723224f - Browse repository at this point
Copy the full SHA 723224fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8f2413e - Browse repository at this point
Copy the full SHA 8f2413eView commit details -
Update postcss packages (#10003)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 580ed5d - Browse repository at this point
Copy the full SHA 580ed5dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 54ad467 - Browse repository at this point
Copy the full SHA 54ad467View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6dce3f4 - Browse repository at this point
Copy the full SHA 6dce3f4View commit details -
Move ESLint cache file into node_modules (#9977)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for e039ad3 - Browse repository at this point
Copy the full SHA e039ad3View commit details -
Revert "Update postcss packages" (#10216)
This reverts commit 580ed5d.
Configuration menu - View commit details
-
Copy full SHA for 3968923 - Browse repository at this point
Copy the full SHA 3968923View commit details
Commits on Dec 14, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 282c03f - Browse repository at this point
Copy the full SHA 282c03fView commit details
Commits on Jan 13, 2021
-
fix(react-scripts): add missing peer dependency react and update reac…
…t-refresh-webpack-plugin (#9872)
Configuration menu - View commit details
-
Copy full SHA for a504e9d - Browse repository at this point
Copy the full SHA a504e9dView commit details
Commits on Jan 14, 2021
-
Update using-the-public-folder.md (#10314)
Some library --> Some libraries
Configuration menu - View commit details
-
Copy full SHA for 0f6fc2b - Browse repository at this point
Copy the full SHA 0f6fc2bView commit details
Commits on Feb 3, 2021
-
Configuration menu - View commit details
-
Copy full SHA for c9a24db - Browse repository at this point
Copy the full SHA c9a24dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for d229676 - Browse repository at this point
Copy the full SHA d229676View commit details -
appTsConfig immutability handling by immer (#10027)
Co-authored-by: mad-jose <joset@yeswearemad.com>
Configuration menu - View commit details
-
Copy full SHA for 6a39607 - Browse repository at this point
Copy the full SHA 6a39607View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8fa0a26 - Browse repository at this point
Copy the full SHA 8fa0a26View commit details -
Configuration menu - View commit details
-
Copy full SHA for b9963ab - Browse repository at this point
Copy the full SHA b9963abView commit details -
Configuration menu - View commit details
-
Copy full SHA for 32c06e6 - Browse repository at this point
Copy the full SHA 32c06e6View commit details -
- cra-template-typescript@1.1.2 - cra-template@1.1.2 - create-react-app@4.0.2 - react-dev-utils@11.0.2 - react-error-overlay@6.0.9 - react-scripts@4.0.2
Configuration menu - View commit details
-
Copy full SHA for 9c75260 - Browse repository at this point
Copy the full SHA 9c75260View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3f5dea9 - Browse repository at this point
Copy the full SHA 3f5dea9View commit details
Commits on Feb 18, 2021
-
Bump webpack-dev-server 3.11.0 -> 3.11.1 (#10312)
Resolves #10084 security vulnerability in websocket-driver library version 0.5.6, imported transitively by sockjs
Configuration menu - View commit details
-
Copy full SHA for 9722ef1 - Browse repository at this point
Copy the full SHA 9722ef1View commit details
Commits on Feb 22, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 18b5962 - Browse repository at this point
Copy the full SHA 18b5962View commit details -
update immer to 8.0.1 to address vulnerability (#10412)
Resolves #10411 Bumps immer version to 8.0.1 to address the prototype pollution vulnerability with the current 7.0.9 version.
Configuration menu - View commit details
-
Copy full SHA for 6947896 - Browse repository at this point
Copy the full SHA 6947896View commit details -
Configuration menu - View commit details
-
Copy full SHA for f710976 - Browse repository at this point
Copy the full SHA f710976View commit details -
Configuration menu - View commit details
-
Copy full SHA for cce32fa - Browse repository at this point
Copy the full SHA cce32faView commit details -
- create-react-app@4.0.3 - react-dev-utils@11.0.3 - react-scripts@4.0.3
Configuration menu - View commit details
-
Copy full SHA for f92c37a - Browse repository at this point
Copy the full SHA f92c37aView commit details
Commits on Mar 2, 2021
-
Update IMAGE_INLINE_SIZE_LIMIT docs (#10631)
The variable is also used in dev.
Configuration menu - View commit details
-
Copy full SHA for 22f46a8 - Browse repository at this point
Copy the full SHA 22f46a8View commit details
Commits on Mar 8, 2021
-
Security Fix for Command Injection - huntr.dev (#10644)
* Update getProcessForPort.js * Update getProcessForPort.js Co-authored-by: Zhou Peng <zpbrent@gmail.com> Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for f5e415f - Browse repository at this point
Copy the full SHA f5e415fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c02ca7 - Browse repository at this point
Copy the full SHA 3c02ca7View commit details
Commits on Mar 17, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 7b56cf7 - Browse repository at this point
Copy the full SHA 7b56cf7View commit details -
Update WebpackManifestPlugin (#10204)
Co-authored-by: Ian Schmitz <ianschmitz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 48d7ffe - Browse repository at this point
Copy the full SHA 48d7ffeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5fc8350 - Browse repository at this point
Copy the full SHA 5fc8350View commit details
Commits on Mar 31, 2021
-
Bump y18n from 4.0.0 to 4.0.1 in /docusaurus/website (#10765)
Bumps [y18n](https://github.com/yargs/y18n) from 4.0.0 to 4.0.1. - [Release notes](https://github.com/yargs/y18n/releases) - [Changelog](https://github.com/yargs/y18n/blob/master/CHANGELOG.md) - [Commits](https://github.com/yargs/y18n/commits) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 09ac3d4 - Browse repository at this point
Copy the full SHA 09ac3d4View commit details -
Trivial English fixes (#10763)
Including `%s/’/'/g` to avoid https://www.fileformat.info/info/unicode/char/2019/index.htm
Configuration menu - View commit details
-
Copy full SHA for 2d1829e - Browse repository at this point
Copy the full SHA 2d1829eView commit details
Commits on Apr 12, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 4d3bbe0 - Browse repository at this point
Copy the full SHA 4d3bbe0View commit details -
Configuration menu - View commit details
-
Copy full SHA for ea4002e - Browse repository at this point
Copy the full SHA ea4002eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 007a028 - Browse repository at this point
Copy the full SHA 007a028View commit details -
Configuration menu - View commit details
-
Copy full SHA for 71cbe59 - Browse repository at this point
Copy the full SHA 71cbe59View commit details -
Remove outdated comments on react-refresh (#10784)
Luke Kang authoredApr 12, 2021 Configuration menu - View commit details
-
Copy full SHA for fddce8a - Browse repository at this point
Copy the full SHA fddce8aView commit details
Commits on May 12, 2021
-
eslint-config-react-app typo fix (#10317)
This just fixes a shell snippet in the readme file for this plugin
Configuration menu - View commit details
-
Copy full SHA for 651d0db - Browse repository at this point
Copy the full SHA 651d0dbView commit details -
Replace the Github home link with a link to the repo's main page or a link to the source (https://github.com/CodeByZach/pace/blob/master/pace.js)
e-w-h authoredMay 12, 2021 Configuration menu - View commit details
-
Copy full SHA for b680ee7 - Browse repository at this point
Copy the full SHA b680ee7View commit details -
Bump immer version for fixing security issue (#10791)
Bump immer minor version to fix `Prototype Pollution` Security issue.
Configuration menu - View commit details
-
Copy full SHA for 281a868 - Browse repository at this point
Copy the full SHA 281a868View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7bdeced - Browse repository at this point
Copy the full SHA 7bdecedView commit details
Commits on May 30, 2021
-
Add support for Webpack 5 message objects (#10121)
Co-authored-by: Brody McKee <mrmckeb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for b172b5e - Browse repository at this point
Copy the full SHA b172b5eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 93241a0 - Browse repository at this point
Copy the full SHA 93241a0View commit details
Commits on Jun 2, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 0415189 - Browse repository at this point
Copy the full SHA 0415189View commit details -
Add source-map-loader for debugging into original source of node_modu…
…les libraries that contain sourcemaps (#8227)
Configuration menu - View commit details
-
Copy full SHA for 382ba21 - Browse repository at this point
Copy the full SHA 382ba21View commit details
Commits on Jun 8, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 0ee4765 - Browse repository at this point
Copy the full SHA 0ee4765View commit details
Commits on Jun 22, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 64df135 - Browse repository at this point
Copy the full SHA 64df135View commit details
Commits on Jul 4, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 78d86f6 - Browse repository at this point
Copy the full SHA 78d86f6View commit details