fluxflow-cli 1.14.0 → 1.14.1
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/dist/fluxflow.js +2 -5
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -1134,7 +1134,7 @@ ${projectContextBlock}
|
|
|
1134
1134
|
-- FORMATTING --
|
|
1135
1135
|
- Clean, concise responses
|
|
1136
1136
|
- Tables: GFM (Max 4 cols, short rows)
|
|
1137
|
-
- NO LaTeX. Code blocks for literature
|
|
1137
|
+
- NO LaTeX. Code blocks for literature${mode === "Flux" ? "" : ". Kaomojis"}
|
|
1138
1138
|
|
|
1139
1139
|
-- RESPONSE RULES --
|
|
1140
1140
|
- End with [turn: continue] for more steps or [turn: finish] when done
|
|
@@ -1225,10 +1225,7 @@ var init_revert = __esm({
|
|
|
1225
1225
|
* Finalizes the transaction and saves it to ledger.json.
|
|
1226
1226
|
*/
|
|
1227
1227
|
async commitTransaction() {
|
|
1228
|
-
if (!currentTransaction
|
|
1229
|
-
currentTransaction = null;
|
|
1230
|
-
return;
|
|
1231
|
-
}
|
|
1228
|
+
if (!currentTransaction) return;
|
|
1232
1229
|
const ledger = readEncryptedJson(LEDGER_FILE, []);
|
|
1233
1230
|
ledger.push(currentTransaction);
|
|
1234
1231
|
if (ledger.length > 500) {
|