Bump prettier from 2.0.3 to 2.0.4 (#1412)

* Bump prettier from 2.0.3 to 2.0.4

Bumps [prettier](https://github.com/prettier/prettier) from 2.0.3 to 2.0.4.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/master/CHANGELOG.md)
- [Commits](https://github.com/prettier/prettier/compare/2.0.3...2.0.4)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* format

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Panayiotis Lipiridis <lipiridis@gmail.com>
This commit is contained in:
dependabot-preview[bot] 2020-04-14 12:30:58 +03:00 committed by GitHub
parent e77e2255bd
commit 7df16c1b1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 125 additions and 140 deletions

6
package-lock.json generated
View File

@ -15548,9 +15548,9 @@
"integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw="
},
"prettier": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.0.3.tgz",
"integrity": "sha512-5qpBDBHO9fpE0zruKiTZm8Gxmz7kknO+WlQR/ivV+RMwgDw/WjOgmxLDn66MPrxq/WZPx/EgEZzh87xJO5E6Fw==",
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.0.4.tgz",
"integrity": "sha512-SVJIQ51spzFDvh4fIbCLvciiDMCrRhlN3mbZvv/+ycjvmF5E73bKdGfU8QDLNmjYJf+lsGnDBC4UUnvTe5OO0w==",
"dev": true
},
"prettier-linter-helpers": {

View File

@ -48,7 +48,7 @@
"lint-staged": "10.1.3",
"node-sass": "4.13.1",
"pepjs": "0.5.2",
"prettier": "2.0.3",
"prettier": "2.0.4",
"rewire": "5.0.0",
"typescript": "3.8.3"
},

View File

@ -134,11 +134,9 @@ import {
function withBatchedUpdates<
TFunction extends ((event: any) => void) | (() => void)
>(func: Parameters<TFunction>["length"] extends 0 | 1 ? TFunction : never) {
return (
((event) => {
return ((event) => {
unstable_batchedUpdates(func as TFunction, event);
}) as TFunction
);
}) as TFunction;
}
const { history } = createHistory();

View File

@ -193,48 +193,38 @@ export function handlerRectangles(
const [, p1] = element.points;
if (p1[0] === 0 || p1[1] === 0) {
return (
{
return {
nw: handlers.nw,
se: handlers.se,
} as typeof handlers
);
} as typeof handlers;
}
if (p1[0] > 0 && p1[1] < 0) {
return (
{
return {
ne: handlers.ne,
sw: handlers.sw,
} as typeof handlers
);
} as typeof handlers;
}
if (p1[0] > 0 && p1[1] > 0) {
return (
{
return {
nw: handlers.nw,
se: handlers.se,
} as typeof handlers
);
} as typeof handlers;
}
if (p1[0] < 0 && p1[1] > 0) {
return (
{
return {
ne: handlers.ne,
sw: handlers.sw,
} as typeof handlers
);
} as typeof handlers;
}
if (p1[0] < 0 && p1[1] < 0) {
return (
{
return {
nw: handlers.nw,
se: handlers.se,
} as typeof handlers
);
} as typeof handlers;
}
}
}

View File

@ -67,10 +67,9 @@ export function getDrawingVersion(elements: readonly ExcalidrawElement[]) {
}
export function getNonDeletedElements(elements: readonly ExcalidrawElement[]) {
return (
elements.filter((element) => !element.isDeleted) as
readonly NonDeletedExcalidrawElement[]
);
return elements.filter(
(element) => !element.isDeleted,
) as readonly NonDeletedExcalidrawElement[];
}
export function isNonDeletedElement<T extends ExcalidrawElement>(

View File

@ -13,9 +13,7 @@ export function IsMobileProvider({ children }: { children: React.ReactNode }) {
matches: false,
addListener: () => {},
removeListener: () => {},
} as
any) as
MediaQueryList);
} as any) as MediaQueryList);
}
const [isMobile, setMobile] = useState(query.current.matches);

View File

@ -1,7 +1,6 @@
export const isDarwin = /Mac|iPod|iPhone|iPad/.test(window.navigator.platform);
export const KEYS =
{
export const KEYS = {
ARROW_LEFT: "ArrowLeft",
ARROW_RIGHT: "ArrowRight",
ARROW_DOWN: "ArrowDown",

View File

@ -2,8 +2,7 @@ import React from "react";
import oc from "open-color";
// We inline font-awesome icons in order to save on js size rather than including the font awesome react library
export const SHAPES =
[
export const SHAPES = [
{
icon: (
// fa-mouse-pointer

View File

@ -164,9 +164,11 @@ function getSelectedElement(): ExcalidrawElement {
type HandlerRectanglesRet = keyof ReturnType<typeof handlerRectangles>;
function getResizeHandles() {
const rects =
handlerRectangles(getSelectedElement(), h.state.zoom, pointerType) as
{
const rects = handlerRectangles(
getSelectedElement(),
h.state.zoom,
pointerType,
) as {
[T in HandlerRectanglesRet]: [number, number, number, number];
};