chore: format packages/scripts folder (#19611)

Co-authored-by: Jarred-Sumner <709451+Jarred-Sumner@users.noreply.github.com>
This commit is contained in:
Jarred Sumner
2025-05-12 17:12:17 -07:00
committed by GitHub
parent efdeac0a85
commit 3f360b0682
71 changed files with 350 additions and 294 deletions

View File

@@ -1,7 +1,7 @@
:host {
--bun-error-color: #e33737;
--bun-error-monospace: ui-monospace, Menlo, Monaco, "Cascadia Mono",
"Segoe UI Mono", "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace",
--bun-error-monospace:
ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace",
"Source Code Pro", "Fira Mono", "Droid Sans Mono", "Courier New", monospace;
--bun-error-width: 512px;
}
@@ -15,7 +15,9 @@
text-decoration: underline;
}
#BunErrorOverlay-container {
box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.1),
box-shadow:
0px 16px 24px rgba(0, 0, 0, 0.06),
0px 2px 6px rgba(0, 0, 0, 0.1),
0px 0px 1px rgba(0, 0, 0, 0.04);
backdrop-filter: blur(42px);
backface-visibility: visible;
@@ -29,8 +31,9 @@
right: 48px;
z-index: 999999;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol";
}
.BunErrorRoot--FullPage #BunErrorOverlay-container {

View File

@@ -1,5 +1,4 @@
import React from "react";
import { useContext, createContext } from "react";
import React, { createContext, useContext } from "react";
import { render, unmountComponentAtNode } from "react-dom";
import type {
FallbackMessageContainer,

View File

@@ -1,5 +1,5 @@
import { normalizedFilename, StackFrameIdentifier, thisCwd, StackFrameScope } from "./index";
import type { JSException, JSException as JSExceptionType, Message, Problems } from "../../src/api/schema";
import { normalizedFilename, StackFrameIdentifier, StackFrameScope, thisCwd } from "./index";
export function problemsToMarkdown(problems: Problems) {
var markdown = "";

View File

@@ -1,6 +1,6 @@
// Based on https://github.com/stacktracejs/error-stack-parser/blob/master/error-stack-parser.js
import type { StackFrame as StackFrameType, StackFramePosition, StackFrameScope } from "../../src/api/schema";
import type { StackFramePosition, StackFrameScope, StackFrame as StackFrameType } from "../../src/api/schema";
export class StackFrame implements StackFrameType {
function_name: string;

View File

@@ -1,13 +1,5 @@
const UNKNOWN_FUNCTION = "<unknown>";
import type {
FallbackMessageContainer,
JSException,
Location,
Message,
SourceLine,
StackFrame,
WebsocketMessageBuildFailure,
} from "../../src/api/schema";
import type { StackFrame } from "../../src/api/schema";
/**
* This parses the different stack traces and puts them into one format

View File

@@ -1,13 +1,10 @@
{
"compilerOptions": {
"jsx": "react",
"lib": [
"ESNext",
"DOM"
],
"lib": ["ESNext", "DOM"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"allowSyntheticDefaultImports": true
}
}
}