@getmikk/watcher 1.3.0 → 1.3.1
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 +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
> Chokidar-powered file watcher daemon with incremental analysis, debouncing, race-condition protection, and atomic lock file updates.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@getmikk/watcher)
|
|
6
|
-
[](../../LICENSE)
|
|
7
7
|
|
|
8
8
|
`@getmikk/watcher` keeps the `mikk.lock.json` file in sync with your codebase in real time. When files change, the watcher debounces events, incrementally re-parses only the affected files, updates the dependency graph, recomputes Merkle hashes, and writes the lock file atomically — all without requiring a full re-analysis.
|
|
9
9
|
|
|
@@ -262,4 +262,4 @@ import type {
|
|
|
262
262
|
|
|
263
263
|
## License
|
|
264
264
|
|
|
265
|
-
[
|
|
265
|
+
[Apache-2.0](../../LICENSE)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getmikk/watcher",
|
|
3
|
-
"version": "1.3.
|
|
4
|
-
"license": "
|
|
3
|
+
"version": "1.3.1",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/Ansh-dhanani/mikk"
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"dev": "tsc --watch"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@getmikk/core": "
|
|
24
|
+
"@getmikk/core": "^1.3.1",
|
|
25
25
|
"chokidar": "^4.0.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"typescript": "^5.7.0",
|
|
29
29
|
"@types/node": "^22.0.0"
|
|
30
30
|
}
|
|
31
|
-
}
|
|
31
|
+
}
|