@chosengeneration/light-code 0.1.0
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 +21 -0
- package/README.md +73 -0
- package/dist/cli.js +6758 -0
- package/dist/client/client.css +91 -0
- package/dist/client/client.js +182 -0
- package/dist/client/index.html +19 -0
- package/dist/server.js +6666 -0
- package/package.json +63 -0
|
@@ -0,0 +1,19 @@
|
|
|
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.0" />
|
|
6
|
+
<title>Light Code</title>
|
|
7
|
+
<link rel="stylesheet" href="/client.css" />
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<!--
|
|
11
|
+
The theme variables the UI styles against are supplied by VS Code in the extension.
|
|
12
|
+
In a browser there is no host to supply them, so client.css defines the same names.
|
|
13
|
+
That keeps packages/ui identical across both hosts rather than branching on it.
|
|
14
|
+
-->
|
|
15
|
+
<div id="status" role="status"></div>
|
|
16
|
+
<div id="root"></div>
|
|
17
|
+
<script src="/client.js"></script>
|
|
18
|
+
</body>
|
|
19
|
+
</html>
|