Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@

**Web**:

- The playground no longer depends on `web-vitals`. `reportWebVitals` was called
with no argument, and its body is guarded on that argument being a function —
so the dynamic `import("web-vitals")` inside it never ran. It was Create React
App boilerplate that outlived the migration to Vite. (@prql-bot, #6233)

**Integrations**:

- The `prqlc` Python package now declares `requires-python = ">=3.10"`. Python
Expand Down
7 changes: 0 additions & 7 deletions web/playground/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion web/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-syntax-highlighter": "^16.1.0",
"web-vitals": "^6.1.0",
"yaml": "^2.9.0"
},
"devDependencies": {
Expand Down
6 changes: 0 additions & 6 deletions web/playground/src/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,10 @@ import ReactDOM from "react-dom/client";
import "./index.css";
import "./highlight.css";
import App from "./app/App";
import reportWebVitals from "./reportWebVitals";

const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>,
);

// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();
13 changes: 0 additions & 13 deletions web/playground/src/reportWebVitals.js

This file was deleted.

Loading