@bonginkan/maria-lite 8.0.0 → 8.0.2
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 +70 -26
- package/dist/cli.cjs +4394 -3335
- package/dist/desktop-client.js +3 -3
- package/dist/ext.cjs +1 -1
- package/dist/ext.d.cts +2 -0
- package/origin/index.meta.json +1 -1
- package/package.json +1 -1
package/dist/desktop-client.js
CHANGED
|
@@ -4948,7 +4948,7 @@ async function openUniverseViewerShell(opts) {
|
|
|
4948
4948
|
html += '<div class="uv-heartbeat-bar"><span class="uv-hb-dot"></span><span class="uv-hb-label">Off</span><span class="uv-hb-progress"></span></div>';
|
|
4949
4949
|
html += '<div class="uv-controls">';
|
|
4950
4950
|
html += '<input class="uv-topic-input" type="text" placeholder="Enter your topic (required)" />';
|
|
4951
|
-
html += '<label class="uv-apply-label"><input class="uv-apply-check" type="checkbox" /> --apply</label>';
|
|
4951
|
+
html += '<label class="uv-apply-label"><input class="uv-apply-check" type="checkbox" checked /> --apply</label>';
|
|
4952
4952
|
const infIcon = vLucide ? lucideIcon("rocket", "di-lucide") : "\u{1F680}";
|
|
4953
4953
|
html += `<button class="uv-inflate-btn">${infIcon} Inflate</button>`;
|
|
4954
4954
|
const rerunIcon = vLucide ? lucideIcon("refresh-cw", "di-lucide") : "\u{1F504}";
|
|
@@ -5099,7 +5099,7 @@ async function openUniverseViewerShell(opts) {
|
|
|
5099
5099
|
inflateBtn?.addEventListener("click", () => {
|
|
5100
5100
|
const topicVal = requireTopic();
|
|
5101
5101
|
if (topicVal === null) return;
|
|
5102
|
-
const applyMode = applyCheck?.checked ? "
|
|
5102
|
+
const applyMode = applyCheck?.checked === false ? "plan-only" : "apply";
|
|
5103
5103
|
inflateUniverse(name, applyMode, topicVal || void 0, { inFiles: getInFiles() });
|
|
5104
5104
|
});
|
|
5105
5105
|
const rerunBtn = body.querySelector(".uv-rerun-btn");
|
|
@@ -7250,7 +7250,7 @@ async function openMultiverseFolder() {
|
|
|
7250
7250
|
body.innerHTML = `<div style="padding:16px;color:#e74c3c;">Failed to load multiverse: ${String(err)}</div>`;
|
|
7251
7251
|
}
|
|
7252
7252
|
}
|
|
7253
|
-
function inflateUniverse(name, mode = "
|
|
7253
|
+
function inflateUniverse(name, mode = "apply", topic, opts) {
|
|
7254
7254
|
const flag = mode === "apply" ? "--apply" : "--plan-only";
|
|
7255
7255
|
const topicPart = topic ? ` --topic "${topic.replace(/"/g, '\\"')}"` : "";
|
|
7256
7256
|
const rerunPart = opts?.rerun ? " --rerun" : "";
|
package/dist/ext.cjs
CHANGED
|
@@ -98007,7 +98007,7 @@ function resolvePackageJsonNearEntrypoint() {
|
|
|
98007
98007
|
}
|
|
98008
98008
|
function resolveMariaLiteVersionInfo() {
|
|
98009
98009
|
const fallbackName = EXPECTED_PKG_NAME;
|
|
98010
|
-
const fallbackVersion = String(process.env.MARIA_LITE_VERSION || "").trim() || "8.0.
|
|
98010
|
+
const fallbackVersion = String(process.env.MARIA_LITE_VERSION || "").trim() || "8.0.2";
|
|
98011
98011
|
const near = resolvePackageJsonNearEntrypoint();
|
|
98012
98012
|
if (near) {
|
|
98013
98013
|
const name = fallbackName;
|
package/dist/ext.d.cts
CHANGED
package/origin/index.meta.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"buildTimestamp":"2026-03-
|
|
1
|
+
{"buildTimestamp":"2026-03-10T06:01:12.324Z","fileCount":952,"indexJsonlRelPath":"src-lite/origin/index.jsonl","schemaVersion":"maria_lite_origin_index_meta_v1","sourceDir":"src-lite/origin","textExtractedCount":952}
|