Skip to content

Commit 680f27f

Browse files
author
Brian Vaughn
committed
Merged main and resolved conflicts
1 parent dc5304a commit 680f27f

File tree

103 files changed

+4521
-1796
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+4521
-1796
lines changed

dangerfile.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,17 @@ function row(result) {
113113
return;
114114
}
115115

116+
// Disable sizeBot in a Devtools Pull Request. Because that doesn't affect production bundle size.
117+
const commitFiles = [
118+
...danger.git.created_files,
119+
...danger.git.deleted_files,
120+
...danger.git.modified_files,
121+
];
122+
if (
123+
commitFiles.every(filename => filename.includes('packages/react-devtools'))
124+
)
125+
return;
126+
116127
const resultsMap = new Map();
117128

118129
// Find all the head (current) artifacts paths.

fixtures/attribute-behavior/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ Right now, we use a purple outline to call out cases where the assigned property
2828

2929
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
3030

31-
You can find the guide for how to do things in a CRA [here](https://github.com/facebook/create-react-app/blob/master/packages/cra-template/template/README.md).
31+
You can find the guide for how to do things in a CRA [here](https://github.com/facebook/create-react-app/blob/main/packages/cra-template/template/README.md).

fixtures/concurrent/time-slicing/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It depends on a local build of React and enables us to easily test async "time s
1010

1111
No. The APIs being tested here are unstable and some of them have still not been released to NPM. For now, this fixture is only a test harness.
1212

13-
There are also known bugs and inefficiencies in master so **don't use this fixture for demonstration purposes either yet**. Until they are fixed, this fixture is **not** indicative of React async rendering performance.
13+
There are also known bugs and inefficiencies in main so **don't use this fixture for demonstration purposes either yet**. Until they are fixed, this fixture is **not** indicative of React async rendering performance.
1414

1515
## How do I run this fixture?
1616

fixtures/devtools/regression/shared.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if (typeof SchedulerTracing !== 'undefined') {
3232
trace = (_, __, callback) => callback();
3333
}
3434

35-
// https://github.com/facebook/react/blob/master/CHANGELOG.md
35+
// https://github.com/facebook/react/blob/main/CHANGELOG.md
3636
switch (major) {
3737
case 16:
3838
switch (minor) {

packages/react-devtools-extensions/flow-typed/npm/react-test-renderer_v16.x.x.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// flow-typed version: 9c71eca8ef/react-test-renderer_v16.x.x/flow_>=v0.47.x
33

44
// Type definitions for react-test-renderer 16.x.x
5-
// Ported from: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/main/types/react-test-renderer
5+
// Ported from: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react-test-renderer
66

77
'use strict';
88

-3.03 KB
Loading
-3.03 KB
Loading
-2.79 KB
Loading
-2.12 KB
Loading
-2.59 KB
Loading

0 commit comments

Comments
 (0)