anymon 0.2.0 → 0.3.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 +55 -0
- package/package.json +11 -7
package/README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Anymon
|
|
2
|
+
|
|
3
|
+
Anymon is an ultra‑fast, language‑agnostic file watcher that runs arbitrary
|
|
4
|
+
commands when files change. It is intended to be a lightweight developer
|
|
5
|
+
productivity tool for running builds, tests, linters, or any script in response
|
|
6
|
+
to filesystem events.
|
|
7
|
+
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
- Install globally:
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm i -g anymon
|
|
14
|
+
# or
|
|
15
|
+
yarn global add anymon
|
|
16
|
+
# or
|
|
17
|
+
pnpm add -g anymon
|
|
18
|
+
# or
|
|
19
|
+
bun add -g anymon
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
- Or add per-project as a dev dependency:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
npm i -D anymon
|
|
26
|
+
# or
|
|
27
|
+
yarn add -D anymon
|
|
28
|
+
# or
|
|
29
|
+
pnpm add -D anymon
|
|
30
|
+
# or
|
|
31
|
+
bun add -D anymon
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Updating
|
|
35
|
+
|
|
36
|
+
To update Anymon to the latest version:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
npm i -g anymon@latest
|
|
40
|
+
# or
|
|
41
|
+
yarn global add anymon@latest
|
|
42
|
+
# or
|
|
43
|
+
pnpm add -g anymon@latest
|
|
44
|
+
# or
|
|
45
|
+
bun add -g anymon@latest
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Configuration
|
|
49
|
+
|
|
50
|
+
Configuration is a TOML file (e.g., `Anymon.toml`). The supported schema is
|
|
51
|
+
documented in `docs/usage.md` and implemented in `crates/anymon-core/src/config.rs`.
|
|
52
|
+
|
|
53
|
+
## License
|
|
54
|
+
|
|
55
|
+
This repository is dual-licensed under the MIT License and the Apache License (Version 2.0).
|
package/package.json
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anymon",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Ultra-fast, language-agnostic file watcher that runs anything on change.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"anymon": "bin/anymon.js"
|
|
7
7
|
},
|
|
8
|
+
"files": [
|
|
9
|
+
"bin/anymon.js",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
8
12
|
"homepage": "https://anymon.xyz",
|
|
9
13
|
"keywords": [
|
|
10
14
|
"file-watcher",
|
|
@@ -22,12 +26,12 @@
|
|
|
22
26
|
"Anymon Contributors"
|
|
23
27
|
],
|
|
24
28
|
"optionalDependencies": {
|
|
25
|
-
"@anymon/x86_64-unknown-linux-gnu": "0.
|
|
26
|
-
"@anymon/aarch64-unknown-linux-gnu": "0.
|
|
27
|
-
"@anymon/x86_64-apple-darwin": "0.
|
|
28
|
-
"@anymon/aarch64-apple-darwin": "0.
|
|
29
|
-
"@anymon/x86_64-pc-windows-msvc": "0.
|
|
30
|
-
"@anymon/aarch64-pc-windows-msvc": "0.
|
|
29
|
+
"@anymon/x86_64-unknown-linux-gnu": "0.3.0",
|
|
30
|
+
"@anymon/aarch64-unknown-linux-gnu": "0.3.0",
|
|
31
|
+
"@anymon/x86_64-apple-darwin": "0.3.0",
|
|
32
|
+
"@anymon/aarch64-apple-darwin": "0.3.0",
|
|
33
|
+
"@anymon/x86_64-pc-windows-msvc": "0.3.0",
|
|
34
|
+
"@anymon/aarch64-pc-windows-msvc": "0.3.0"
|
|
31
35
|
},
|
|
32
36
|
"license": "MIT or Apache-2.0"
|
|
33
37
|
}
|