reviewme 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +189 -0
- package/README.md +108 -0
- package/THIRD_PARTY_NOTICES.md +51 -0
- package/bin/reviewme.mjs +23 -0
- package/dist/frontend/index-pnpx6fbm.css +1 -0
- package/dist/frontend/index-y224j9f0.js +3314 -0
- package/dist/frontend/index.html +26 -0
- package/dist/server/main.js +402 -0
- package/dist/server/main.js.map +92 -0
- package/examples/themes/custom.yml +33 -0
- package/package.json +48 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<meta name="color-scheme" content="dark" />
|
|
7
|
+
<meta name="reviewme-token" content="" />
|
|
8
|
+
<script>
|
|
9
|
+
window.addEventListener("error", (event) => {
|
|
10
|
+
if (
|
|
11
|
+
event.message === "ResizeObserver loop completed with undelivered notifications." ||
|
|
12
|
+
event.message === "ResizeObserver loop limit exceeded"
|
|
13
|
+
) {
|
|
14
|
+
event.preventDefault();
|
|
15
|
+
event.stopImmediatePropagation();
|
|
16
|
+
}
|
|
17
|
+
}, true);
|
|
18
|
+
</script>
|
|
19
|
+
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect width='32' height='32' rx='7' fill='%23121817'/><path d='m9 16 5 5 9-11' fill='none' stroke='%237ee787' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>" />
|
|
20
|
+
<title>ReviewMe</title>
|
|
21
|
+
<link rel="stylesheet" crossorigin href="./index-pnpx6fbm.css"><script type="module" crossorigin src="./index-y224j9f0.js"></script></head>
|
|
22
|
+
<body>
|
|
23
|
+
<div id="root"></div>
|
|
24
|
+
|
|
25
|
+
</body>
|
|
26
|
+
</html>
|