fix: new property and class idents don't have suffix

when created from app or cli. Moving db-worker to node changed the
js/process exist check in db-ident ns. Brought back env var for
straightforward fix. I checked other process checks and this was the
only one affected this way. Also remove double testing for graph-parser as
it hasn't provided any benefit and yet another place where we kept
juggling this env var
This commit is contained in:
Gabriel Horner
2026-03-25 11:56:10 -04:00
parent 105282cb78
commit b513b94026
6 changed files with 7 additions and 42 deletions

View File

@@ -103,7 +103,7 @@
"cljs:release-app": "clojure -M:cljs release app db-worker db-worker-node inference-worker",
"cljs:release-publishing": "clojure -M:cljs release app publishing",
"cljs:test": "clojure -M:test compile test",
"cljs:run-test": "node static/tests.js -r '^(?!(?:logseq.db-sync.|logseq.cli.integration-test)).*' -e fix-me",
"cljs:run-test": "LOGSEQ_STABLE_IDENTS=1 node static/tests.js -r '^(?!(?:logseq.db-sync.|logseq.cli.integration-test)).*' -e fix-me",
"cljs:run-integration-test": "node static/tests.js -r '^(logseq.cli.integration-test).*'",
"cljs:test-no-worker": "clojure -M:test compile test-no-worker",
"cljs:run-test-no-worker": "node static/tests-no-worker.js",