logseq/deps/outliner
Tienson Qin 9b1da32028 fix: simplify deleting refed blocks
The new implementation will replace refs of the current deleting block
with the nearby block (if exists).
2024-06-06 19:36:40 +08:00
..
.carve fix: outliner lints 2024-05-14 15:11:29 -04:00
script fix: move db-pipeline and datascript-report back to outliner dep 2024-04-25 11:22:14 -04:00
src/logseq/outliner fix: simplify deleting refed blocks 2024-06-06 19:36:40 +08:00
test/logseq/outliner enhance: generate any outline structure with :build/children 2024-06-05 12:15:12 -04:00
README.md Add readme, lint and CI for outliner dep 2023-09-06 17:03:04 -04:00
bb.edn fix: ns-docstring and large-var deps lints 2024-01-12 17:03:09 -05:00
deps.edn chore: bump datascript 2024-05-21 20:51:22 +08:00
nbb.edn fix: can't remove Many values 2024-05-02 18:03:17 +08:00
package.json Bump datascript for nbb-logseq 2024-05-22 09:37:16 -04:00
yarn.lock Bump datascript for nbb-logseq 2024-05-22 09:37:16 -04:00

README.md

Description

This library provides outliner operation related functionality. This library is compatible with ClojureScript and with node/nbb-logseq to respectively provide frontend and commandline functionality.

API

This library is under the parent namespace logseq.outliner. This library provides two main namespaces: logseq.outliner.datascript-report and logseq.outliner.pipeline.

Usage

See the frontend for cljs usage.

Dev

This follows the practices that the Logseq frontend follows. Most of the same linters are used, with configurations that are specific to this library. See this library's CI file for linting examples.

Setup

To run linters and tests, you'll want to install yarn dependencies once:

yarn install

This step is not needed if you're just running the frontend application.

Testing

Testing is done with nbb-logseq and nbb-test-runner. Some basic usage:

# Run all tests
$ yarn test
# List available options
$ yarn test -H
# Run tests with :focus metadata flag
$ yarn test -i focus

Managing dependencies

See standard nbb/cljs library advice in graph-parser.