sextant-cli 0.0.1-rc10
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/README.md +84 -0
- package/bin/sxt.js +26 -0
- package/package.json +15 -0
- package/web/dist/assets/index-B5Xh8yq5.css +1 -0
- package/web/dist/assets/index-ufMsj-zZ.js +308 -0
- package/web/dist/favicon.svg +1 -0
- package/web/dist/index.html +16 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" width="1024" height="1024"><rect width="1024" height="1024" fill="#000000"/><defs><linearGradient id="gi" gradientUnits="userSpaceOnUse" x1="372" y1="652" x2="652" y2="372"><stop offset="0" stop-color="#0A84FF"/><stop offset="1" stop-color="#5BF3FF"/></linearGradient></defs><g transform="translate(512,512) scale(1.12) translate(-512,-512)"><path d="M 333,454.0 A 66,66 0 1 0 201,454.0 L 333,570.0 A 66,66 0 1 1 201,570.0 M 444,364 L 580,660 M 580,364 L 444,660 M 652,388.0 H 862 M 757,388.0 V 677" fill="none" stroke="#FFFFFF" stroke-width="82" stroke-linecap="butt" stroke-linejoin="miter" /></g><path d="M 512,445 L 579,512 L 512,579 L 445,512 Z" fill="#000000"/><path d="M 512,470 L 554,512 L 512,554 L 470,512 Z" fill="url(#gi)"/></svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="zh-CN">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
|
6
|
+
<!-- 网页端原本没有 favicon,浏览器标签页上是一个空白方块。用和 App 图标同一个
|
|
7
|
+
SVG(brand/logo/sxt-icon.svg 的副本),两端认得出是同一个东西。 -->
|
|
8
|
+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
9
|
+
<title>Sextant</title>
|
|
10
|
+
<script type="module" crossorigin src="/assets/index-ufMsj-zZ.js"></script>
|
|
11
|
+
<link rel="stylesheet" crossorigin href="/assets/index-B5Xh8yq5.css">
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
<div id="app"></div>
|
|
15
|
+
</body>
|
|
16
|
+
</html>
|