Skip to content

Commit 87b62a5

Browse files
committed
feat: debug mode and alpha preview
1 parent 3c31716 commit 87b62a5

File tree

6 files changed

+568
-521
lines changed

6 files changed

+568
-521
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ lib-cov
99
logs
1010
node_modules
1111
temp
12+
.generated

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ucan-inspector",
33
"type": "module",
44
"version": "0.0.0",
5-
"packageManager": "[email protected].2",
5+
"packageManager": "[email protected].3",
66
"description": "Custom element for inspecting UCAN tokens and containers",
77
"author": "@cwaring",
88
"license": "MIT",

playground/index.html

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,20 @@
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Vite + TS</title>
7+
<title>UCAN Inspector (Preview)</title>
8+
<style>
9+
body {
10+
margin: 1rem;
11+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
12+
-webkit-font-smoothing: antialiased;
13+
-moz-osx-font-smoothing: grayscale;
14+
background-color: oklch(30% .027 262.05);
15+
color: #ffffff;
16+
}
17+
</style>
818
</head>
919
<body>
10-
<div id="app"></div>
11-
<ucan-inspector>
12-
13-
</ucan-inspector>
20+
<ucan-inspector></ucan-inspector>
1421
<script type="module" src="/src/main.ts"></script>
1522
</body>
1623
</html>

0 commit comments

Comments
 (0)