@vernikr/size-report 2.8.8 → 2.8.9
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 +10 -14
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# @vernikr/size-report
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
Watches how much code and documentation a project carries, commit by commit. Every file is measured
|
|
4
|
+
as written (`raw`), minified (`min`) and in tokens for a language model (`tok`), so a person sees
|
|
5
|
+
where a project swells and an agent sees what a change weighs in its own context. It forbids nothing
|
|
6
|
+
and blocks nothing: it only shows.
|
|
7
7
|
|
|
8
8
|
The report is a single self-contained page (`docs/size-report.html`) — no server, no network — and it
|
|
9
9
|
refreshes itself after every commit. A project needs no settings to start: with no config file the
|
|
@@ -30,16 +30,12 @@ pnpm exec size install-hook # rebuild the report after every commit and me
|
|
|
30
30
|
|
|
31
31
|
## Where the rest is
|
|
32
32
|
|
|
33
|
-
- [`docs/architecture.md`](docs/architecture.md) — how the tool is
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
- [`
|
|
39
|
-
- [`docs/archive/README_old.md`](docs/archive/README_old.md) — the release notes the main page used to
|
|
40
|
-
carry.
|
|
41
|
-
- [`AGENTS.md`](AGENTS.md) — how to work inside this repository: what to run, what to do when a sensor
|
|
42
|
-
is red.
|
|
33
|
+
- [`docs/architecture.md`](docs/architecture.md) — how the tool is built, the checks and the gate
|
|
34
|
+
against bloat.
|
|
35
|
+
- [`docs/wiring.md`](docs/wiring.md) — wiring it into a project, the settings, the surface for an
|
|
36
|
+
agent.
|
|
37
|
+
- [`docs/files.md`](docs/files.md) — what is in this repository.
|
|
38
|
+
- [`AGENTS.md`](AGENTS.md) — how to work inside this repository.
|
|
43
39
|
|
|
44
40
|
## License
|
|
45
41
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vernikr/size-report",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.9",
|
|
4
4
|
"author": "vernikr",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"report"
|
|
66
66
|
],
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@vernikr/size-report": "2.8.
|
|
68
|
+
"@vernikr/size-report": "2.8.8",
|
|
69
69
|
"c8": "10",
|
|
70
70
|
"dependency-cruiser": "17",
|
|
71
71
|
"eslint": "^9.18.0",
|