@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.
Files changed (2) hide show
  1. package/README.md +10 -14
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # @vernikr/size-report
2
2
 
3
- A tool that watches how much code and documentation a project carries, commit by commit. Every
4
- change is shown in three measures at once — as written (`raw`), minified (`min`) and in tokens for a
5
- language model (`tok`) so a person can see where a project is swelling and an agent can see what a
6
- change weighs in its own context. It forbids nothing and blocks nothing: it only shows.
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 put together: the engine, the report
34
- page, the checks and the promises they hold, the gate against bloat, the traps of the engine and what
35
- is not here yet.
36
- - [`docs/wiring.md`](docs/wiring.md) — wiring the tool into a project step by step, the settings and its
37
- surface for an agent.
38
- - [`docs/files.md`](docs/files.md) — what is in the repository: the role of every file and module.
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.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.7",
68
+ "@vernikr/size-report": "2.8.8",
69
69
  "c8": "10",
70
70
  "dependency-cruiser": "17",
71
71
  "eslint": "^9.18.0",