eser 0.8.3 → 0.8.5
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 +58 -0
- package/eser.js +8381 -0
- package/package.json +2 -10
- package/bin.ts +0 -6
- package/commands/codebase/mod.ts +0 -411
- package/deno.json +0 -10
- package/main.ts +0 -79
- package/package.json.template +0 -16
- package/scripts/npm-publish-prepare.ts +0 -123
- package/scripts/npm-publish-revert.ts +0 -30
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# eser
|
|
2
|
+
|
|
3
|
+
Eser Ozvataf's command-line tooling to access things.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Using npx (no installation required)
|
|
9
|
+
npx eser <command>
|
|
10
|
+
|
|
11
|
+
# Using Deno
|
|
12
|
+
deno run -A jsr:@eser/cli <command>
|
|
13
|
+
|
|
14
|
+
# Global installation via npm
|
|
15
|
+
npm install -g eser
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Commands
|
|
19
|
+
|
|
20
|
+
### codebase
|
|
21
|
+
|
|
22
|
+
Codebase validation and management tools.
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
eser codebase <subcommand> [options]
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
**Subcommands:**
|
|
29
|
+
|
|
30
|
+
- `check` - Run all codebase checks
|
|
31
|
+
- `check-circular-deps` - Check for circular dependencies
|
|
32
|
+
- `check-docs` - Check documentation coverage
|
|
33
|
+
- `check-export-names` - Check export naming conventions
|
|
34
|
+
- `check-licenses` - Check license compliance
|
|
35
|
+
- `check-mod-exports` - Check module exports
|
|
36
|
+
- `check-package-configs` - Check package configurations
|
|
37
|
+
|
|
38
|
+
**Options:**
|
|
39
|
+
|
|
40
|
+
- `-h, --help` - Show help message
|
|
41
|
+
- `--root <path>` - Root directory (default: current directory)
|
|
42
|
+
|
|
43
|
+
## Examples
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
# Run all checks on current directory
|
|
47
|
+
eser codebase check
|
|
48
|
+
|
|
49
|
+
# Check for circular dependencies
|
|
50
|
+
eser codebase check-circular-deps
|
|
51
|
+
|
|
52
|
+
# Run checks on a specific directory
|
|
53
|
+
eser codebase check --root ./my-project
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
Apache-2.0
|