mirror of
https://github.com/logseq/logseq.git
synced 2026-05-01 01:16:27 +00:00
52 lines
1.2 KiB
Markdown
52 lines
1.2 KiB
Markdown
## Description
|
|
|
|
This library provides common util namespaces to share between the frontend and
|
|
other non-frontend namespaces. This library is not supposed to depend on other logseq
|
|
libraries. This library is compatible with ClojureScript and with
|
|
node/[nbb-logseq](https://github.com/logseq/nbb-logseq) to respectively provide
|
|
frontend and Electron/commandline functionality.
|
|
|
|
|
|
## API
|
|
|
|
This library is under the parent namespace `logseq.common`.
|
|
|
|
## Dev
|
|
|
|
This follows the practices that [the Logseq frontend
|
|
follows](/docs/dev-practices.md). Most of the same linters are used, with
|
|
configurations that are specific to this library. See [this library's CI
|
|
file](/.github/workflows/logseq-common.yml) for linting examples.
|
|
|
|
### Setup
|
|
|
|
To run linters and tests, you'll want to install yarn dependencies once:
|
|
```
|
|
yarn install
|
|
```
|
|
### Testing
|
|
|
|
To run nbb-logseq tests:
|
|
|
|
```
|
|
# Run all tests
|
|
$ yarn test
|
|
# List available options
|
|
$ yarn test -H
|
|
# Run tests with :focus metadata flag
|
|
$ yarn test -i focus
|
|
```
|
|
|
|
To run ClojureScript tests:
|
|
```
|
|
clojure -M:test
|
|
```
|
|
|
|
To auto-run ClojureScript tests while writing tests:
|
|
|
|
```
|
|
clojure -M:test -w src
|
|
```
|
|
### Managing dependencies
|
|
|
|
See [standard nbb/cljs library advice in graph-parser](/deps/graph-parser/README.md#managing-dependencies). |