plotlink-ows 1.2.98 → 1.2.99
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 +17 -0
- package/app/routes/dashboard.ts +73 -6
- package/app/routes/wallet.ts +189 -5
- package/app/web/components/Dashboard.tsx +40 -0
- package/app/web/components/WalletCard.tsx +169 -0
- package/app/web/dist/assets/{export-cut-DVpOZ5AO.js → export-cut-uimRac8k.js} +1 -1
- package/app/web/dist/assets/{index-H5_FM885.css → index-9RO6eX-I.css} +1 -1
- package/app/web/dist/assets/{index-CoG6WKyb.js → index-D-nLoQ_K.js} +52 -52
- package/app/web/dist/index.html +2 -2
- package/package.json +1 -1
- package/scripts/preflight.mjs +10 -0
package/app/web/dist/index.html
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
8
8
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
9
9
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lora:wght@400;600;700&family=Geist+Mono:wght@400;500&display=swap" rel="stylesheet" />
|
|
10
|
-
<script type="module" crossorigin src="/assets/index-
|
|
11
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
10
|
+
<script type="module" crossorigin src="/assets/index-D-nLoQ_K.js"></script>
|
|
11
|
+
<link rel="stylesheet" crossorigin href="/assets/index-9RO6eX-I.css">
|
|
12
12
|
</head>
|
|
13
13
|
<body>
|
|
14
14
|
<div id="root"></div>
|
package/package.json
CHANGED
package/scripts/preflight.mjs
CHANGED
|
@@ -8,6 +8,16 @@
|
|
|
8
8
|
// It is READ-ONLY and safe: it never runs `npm audit fix`, never publishes,
|
|
9
9
|
// never needs `npm login`, and never prints secrets/passphrases/wallet data.
|
|
10
10
|
//
|
|
11
|
+
// Manual publish checklist:
|
|
12
|
+
// 1. Run this preflight.
|
|
13
|
+
// 2. Commit the release version/build artifacts.
|
|
14
|
+
// 3. Create or update the matching GitHub Release page for `vX.Y.Z`.
|
|
15
|
+
// 4. Run `npm publish`.
|
|
16
|
+
//
|
|
17
|
+
// Prefer `npm run release:patch|minor|major` when possible; those scripts create
|
|
18
|
+
// the GitHub Release before publishing. If you publish manually, do not skip the
|
|
19
|
+
// GitHub Release page.
|
|
20
|
+
//
|
|
11
21
|
// It reports + checks four things, and exits non-zero on any blocking issue:
|
|
12
22
|
// 1. Expected Node/npm toolchain (from package.json engines / packageManager).
|
|
13
23
|
// 2. A production `npm audit --omit=dev` summary (reported; high/critical warn).
|