@rejot-dev/thalo-cli 0.2.2 → 0.2.3

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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +5 -8
package/README.md CHANGED
@@ -5,6 +5,16 @@ syntax.
5
5
 
6
6
  ## Installation
7
7
 
8
+ ```bash
9
+ # Install globally
10
+ npm install -g @rejot-dev/thalo-cli
11
+
12
+ # Or with pnpm
13
+ pnpm add -g @rejot-dev/thalo-cli
14
+ ```
15
+
16
+ ### Development
17
+
8
18
  ```bash
9
19
  # From the monorepo root
10
20
  pnpm install
@@ -14,6 +24,11 @@ pnpm exec turbo run build --filter=@rejot-dev/thalo-cli
14
24
  node apps/thalo-cli/dist/mod.js --help
15
25
  ```
16
26
 
27
+ ### Parser
28
+
29
+ The CLI uses a WebAssembly-based parser (via `web-tree-sitter`) that works on all platforms and
30
+ Node.js versions, including Node.js 24+. Run `thalo --version` to see which parser is active.
31
+
17
32
  ## Usage
18
33
 
19
34
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rejot-dev/thalo-cli",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",
@@ -30,13 +30,10 @@
30
30
  "prettier": "^3.5.3",
31
31
  "vscode-languageserver": "^9.0.1",
32
32
  "web-tree-sitter": "^0.25.0",
33
- "@rejot-dev/thalo": "0.2.2",
34
- "@rejot-dev/thalo-lsp": "0.2.2",
35
- "@rejot-dev/thalo-prettier": "0.2.2",
36
- "@rejot-dev/tree-sitter-thalo": "0.2.2"
37
- },
38
- "optionalDependencies": {
39
- "tree-sitter": "^0.25.0"
33
+ "@rejot-dev/thalo": "0.2.3",
34
+ "@rejot-dev/thalo-lsp": "0.2.3",
35
+ "@rejot-dev/thalo-prettier": "0.2.3",
36
+ "@rejot-dev/tree-sitter-thalo": "0.2.3"
40
37
  },
41
38
  "devDependencies": {
42
39
  "@types/node": "^24",