@lvce-editor/file-search-worker 7.5.0 → 8.0.0
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 +12 -3
- package/dist/fileSearchWorkerMain.js +883 -3741
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
# File Search Worker
|
|
2
2
|
|
|
3
|
-
Web
|
|
3
|
+
Web worker for file search in LVCE Editor.
|
|
4
|
+
|
|
5
|
+
This repository now contains only the file-search worker and its backend routing for:
|
|
6
|
+
|
|
7
|
+
- ripgrep-backed file search
|
|
8
|
+
- fetch/web-backed file search
|
|
9
|
+
- HTML-backed file search
|
|
10
|
+
- in-memory file search
|
|
11
|
+
|
|
12
|
+
Quick pick UI logic, rendering, DOM event handling, and non-file picker flows were moved out to a separate repository.
|
|
4
13
|
|
|
5
14
|
## Contributing
|
|
6
15
|
|
|
7
16
|
```sh
|
|
8
|
-
git clone git@github.com:lvce-editor/file-search-worker
|
|
9
|
-
cd file-search-worker
|
|
17
|
+
git clone git@github.com:lvce-editor/file-search-worker.git &&
|
|
18
|
+
cd file-search-worker &&
|
|
10
19
|
npm ci &&
|
|
11
20
|
npm test
|
|
12
21
|
```
|