@ataraxy-labs/sem 0.3.21 → 0.3.23
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/README.md +5 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<img src="https://img.shields.io/badge/rust-stable-orange" alt="Rust">
|
|
21
21
|
<img src="https://img.shields.io/badge/tests-133_passing-brightgreen" alt="Tests">
|
|
22
22
|
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-yellow" alt="License"></a>
|
|
23
|
-
<img src="https://img.shields.io/badge/languages-
|
|
23
|
+
<img src="https://img.shields.io/badge/languages-26-blue" alt="Languages">
|
|
24
24
|
</p>
|
|
25
25
|
|
|
26
26
|
sem is a semantic version control tool that works on top of Git. It parses your code with tree-sitter, extracts every function, class, and method as an entity, and diffs at the entity level instead of lines. This means you see "function `blahh` was modified" instead of "lines x-y changed."
|
|
@@ -206,7 +206,7 @@ sem unsetup
|
|
|
206
206
|
|
|
207
207
|
## What it parses
|
|
208
208
|
|
|
209
|
-
|
|
209
|
+
26 programming languages with full entity extraction via tree-sitter:
|
|
210
210
|
|
|
211
211
|
| Language | Extensions | Entities |
|
|
212
212
|
|----------|-----------|----------|
|
|
@@ -233,6 +233,9 @@ sem unsetup
|
|
|
233
233
|
| Svelte | `.svelte` `.svelte.js` `.svelte.ts` | component blocks + rune JS/TS modules |
|
|
234
234
|
| Perl | `.pl` `.pm` `.t` | subroutines, packages |
|
|
235
235
|
| Dart | `.dart` | classes, mixins, extensions, enums, type aliases, functions |
|
|
236
|
+
| OCaml | `.ml` `.mli` | values, modules, types, classes, externals |
|
|
237
|
+
| Scala | `.scala` `.sc` `.sbt` | classes, objects, traits, enums, functions, vals, extensions |
|
|
238
|
+
| Zig | `.zig` | functions, tests, variables |
|
|
236
239
|
|
|
237
240
|
Plus structured data formats:
|
|
238
241
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ataraxy-labs/sem",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.23",
|
|
4
4
|
"description": "npm wrapper for the sem CLI. Downloads the matching release binary and exposes the sem command in node_modules/.bin.",
|
|
5
5
|
"license": "MIT OR Apache-2.0",
|
|
6
6
|
"type": "module",
|