Skip to content

Commit b2fd8db

Browse files
ro-savageTimer
authored andcommitted
Minor fixes to CI (facebook#4193)
1 parent e76f360 commit b2fd8db

File tree

6 files changed

+2
-6
lines changed

6 files changed

+2
-6
lines changed

packages/react-error-overlay/src/effects/proxyConsole.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const registerReactStack = () => {
2828
// $FlowFixMe
2929
console.reactStack = frames => reactFrameStack.push(frames);
3030
// $FlowFixMe
31-
console.reactStackEnd = frames => reactFrameStack.pop();
31+
console.reactStackEnd = () => reactFrameStack.pop();
3232
}
3333
};
3434

packages/react-error-overlay/src/utils/getStackFrames.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { unmap } from './unmapper';
1313

1414
function getStackFrames(
1515
error: Error,
16-
unhandledRejection: boolean = false,
16+
unhandledRejection: boolean = false, // eslint-disable-line
1717
contextSize: number = 3
1818
): Promise<StackFrame[] | null> {
1919
const parsedFrames = parse(error);

tasks/e2e-installs.sh

-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ root_path=$PWD
7575
if hash npm 2>/dev/null
7676
then
7777
npm i -g npm@latest
78-
npm cache clean || npm cache verify
7978
fi
8079

8180
# Bootstrap monorepo

tasks/e2e-kitchensink.sh

-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ root_path=$PWD
6868
if hash npm 2>/dev/null
6969
then
7070
npm i -g npm@latest
71-
npm cache clean || npm cache verify
7271
fi
7372

7473
# Bootstrap monorepo

tasks/e2e-monorepos.sh

-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ root_path=$PWD
6666
if hash npm 2>/dev/null
6767
then
6868
npm i -g npm@latest
69-
npm cache clean || npm cache verify
7069
fi
7170

7271
# Bootstrap create-react-app monorepo

tasks/e2e-simple.sh

-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ fi
7979
if hash npm 2>/dev/null
8080
then
8181
npm i -g npm@latest
82-
npm cache clean || npm cache verify
8382
fi
8483

8584
# Bootstrap monorepo

0 commit comments

Comments
 (0)