@visulima/cerebro 2.1.5 → 3.0.0-alpha.10

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 (41) hide show
  1. package/CHANGELOG.md +228 -0
  2. package/LICENSE.md +1810 -98
  3. package/README.md +28 -21
  4. package/dist/cli.d.ts +22 -0
  5. package/dist/commands/completion-command.js +204 -5
  6. package/dist/commands/help-command.js +200 -1
  7. package/dist/commands/readme-command.js +326 -32
  8. package/dist/commands/version-command.js +18 -1
  9. package/dist/default-env.d.ts +1 -1
  10. package/dist/index.js +7 -1
  11. package/dist/logger/create-pail-logger.js +34 -1
  12. package/dist/packem_chunks/has-new-version.js +264 -1
  13. package/dist/packem_shared/Cerebro-bgCm5Tb1.js +3444 -0
  14. package/dist/packem_shared/VERBOSITY_QUIET-Dp46zlLW.js +10 -0
  15. package/dist/packem_shared/VisulimaError-DA7QsCxH.js +34 -0
  16. package/dist/packem_shared/cerebro-error-GmJ3jN7Q.js +16 -0
  17. package/dist/packem_shared/index-CS31xKFe.js +264 -0
  18. package/dist/packem_shared/runtime-process-B6ZplyWn.js +187 -0
  19. package/dist/plugins/error-handler-plugin.js +648 -1
  20. package/dist/plugins/runtime-version-check-plugin.js +77 -1
  21. package/dist/plugins/update-notifier/update-notifier-plugin.js +517 -1
  22. package/dist/types/cli.d.ts +11 -0
  23. package/dist/types/command-line-usage.d.ts +1 -1
  24. package/dist/types/command.d.ts +10 -10
  25. package/dist/util/command-processing/option-processor.d.ts +8 -8
  26. package/dist/util/general/compile-cache.d.ts +41 -0
  27. package/dist/util/general/compile-cache.js +16 -0
  28. package/dist/util/general/heap-tuning.d.ts +81 -0
  29. package/dist/util/general/heap-tuning.js +91 -0
  30. package/dist/util/general/register-exception-handler.d.ts +1 -1
  31. package/dist/util/process-env-variables.d.ts +1 -1
  32. package/package.json +18 -9
  33. package/dist/packem_shared/Cerebro-CQZ9sj4S.js +0 -4
  34. package/dist/packem_shared/VERBOSITY_QUIET-XPultrIA.js +0 -1
  35. package/dist/packem_shared/VisulimaError--04oA1Oy.js +0 -76
  36. package/dist/packem_shared/cerebro-error-BnJTixb2.js +0 -1
  37. package/dist/packem_shared/help-command-CIRIXN03.js +0 -1
  38. package/dist/packem_shared/index-DQ3pvLQH.js +0 -6
  39. package/dist/packem_shared/isVisulimaError-jVZgumOU-C4fgdbWg.js +0 -1
  40. package/dist/packem_shared/renderError-ZMlMvw1N-eVUSdl6c.js +0 -24
  41. package/dist/packem_shared/runtime-process-G-n-wOub.js +0 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,231 @@
1
+ ## @visulima/cerebro [3.0.0-alpha.10](https://github.com/visulima/visulima/compare/@visulima/cerebro@3.0.0-alpha.9...@visulima/cerebro@3.0.0-alpha.10) (2026-04-08)
2
+
3
+ ### Features
4
+
5
+ * **cerebro:** add addGlobalOption API for CLI-wide options ([ccc1cc0](https://github.com/visulima/visulima/commit/ccc1cc085ed0189be49ab8da7d9dbbc69ba07c72))
6
+ * **cerebro:** add heap-tuning and compile-cache performance helpers ([aebd564](https://github.com/visulima/visulima/commit/aebd56425b8e0e3fac0e5c6cec3697cdfe376881))
7
+
8
+ ### Bug Fixes
9
+
10
+ * **cerebro:** properly fix eslint errors in code ([2ba0003](https://github.com/visulima/visulima/commit/2ba00034172b33072af1ae09109652b6571f4474))
11
+ * **cerebro:** remove remaining eslint suppressions with proper code fixes ([a872fb4](https://github.com/visulima/visulima/commit/a872fb477866b921a79a42eb4645fda97f1b83d3))
12
+ * **cerebro:** resolve eslint errors ([7159a69](https://github.com/visulima/visulima/commit/7159a6910d94042b834bdda4b6929d529532d272))
13
+
14
+ ### Documentation
15
+
16
+ * **cerebro:** document addGlobalOption and getGlobalOptions APIs ([92b38bf](https://github.com/visulima/visulima/commit/92b38bf19115b1469b7e3cbe439305f4d27342e8))
17
+ * **cerebro:** fix markdown formatting in migration guide ([66aaab6](https://github.com/visulima/visulima/commit/66aaab6e25ba2ffca707decaacc3a899850e91f5))
18
+
19
+ ### Miscellaneous Chores
20
+
21
+ * apply linting and formatting fixes across packages ([5d150a5](https://github.com/visulima/visulima/commit/5d150a578f9ce861c791843c683deeb849b774a9))
22
+ * **cerebro:** add tsconfig.eslint.json for type-aware linting ([f14bd4c](https://github.com/visulima/visulima/commit/f14bd4ccef02397a97abf60b0be91e58faf4f5e8))
23
+ * **cerebro:** apply linter fixes and prior session changes ([f50c294](https://github.com/visulima/visulima/commit/f50c294aa41c4c5bbbf8c1c1e3f4d4dcdb5be07f))
24
+ * **cerebro:** apply prettier formatting ([2649ac5](https://github.com/visulima/visulima/commit/2649ac5e3dfda9b816087f34e0feab28a4496cbb))
25
+ * **cerebro:** migrate .prettierrc.cjs to prettier.config.js ([133284e](https://github.com/visulima/visulima/commit/133284ef72efd7639dd147a2c5552c514cb84bff))
26
+ * **terminal:** remove empty dependency objects from package.json ([562c704](https://github.com/visulima/visulima/commit/562c704e5d90aa2d13eae942ebbdcfeb787c2b46))
27
+ * update bundled dependency licenses ([6ace4c6](https://github.com/visulima/visulima/commit/6ace4c69d41fc1fd0a744fbca8ca219ba631b4ab))
28
+ * update docs ([8eb4d08](https://github.com/visulima/visulima/commit/8eb4d085de9315b63328286b42b8ce5e9f424579))
29
+
30
+ ### Tests
31
+
32
+ * **cerebro:** add tests for options after positional arguments ([f321be8](https://github.com/visulima/visulima/commit/f321be8b56aa79fcf49b98f19d4a2620ae52dc34))
33
+
34
+
35
+ ### Dependencies
36
+
37
+ * **@visulima/colorize:** upgraded to 2.0.0-alpha.8
38
+ * **@visulima/tabular:** upgraded to 4.0.0-alpha.9
39
+ * **@visulima/boxen:** upgraded to 3.0.0-alpha.9
40
+ * **@visulima/command-line-args:** upgraded to 2.0.0-alpha.7
41
+ * **@visulima/error:** upgraded to 6.0.0-alpha.8
42
+ * **@visulima/find-cache-dir:** upgraded to 3.0.0-alpha.7
43
+ * **@visulima/pail:** upgraded to 4.0.0-alpha.10
44
+ * **@visulima/path:** upgraded to 3.0.0-alpha.8
45
+ * **@visulima/string:** upgraded to 3.0.0-alpha.9
46
+
47
+ ## @visulima/cerebro [3.0.0-alpha.9](https://github.com/visulima/visulima/compare/@visulima/cerebro@3.0.0-alpha.8...@visulima/cerebro@3.0.0-alpha.9) (2026-03-26)
48
+
49
+ ### Features
50
+
51
+ * **web:** auto-generate packages page from workspace metadata ([623e520](https://github.com/visulima/visulima/commit/623e5207693a7fe720f5f2f179593a3654c880e3))
52
+
53
+
54
+ ### Dependencies
55
+
56
+ * **@visulima/colorize:** upgraded to 2.0.0-alpha.7
57
+ * **@visulima/tabular:** upgraded to 4.0.0-alpha.8
58
+ * **@visulima/boxen:** upgraded to 3.0.0-alpha.8
59
+ * **@visulima/command-line-args:** upgraded to 2.0.0-alpha.6
60
+ * **@visulima/error:** upgraded to 6.0.0-alpha.7
61
+ * **@visulima/find-cache-dir:** upgraded to 3.0.0-alpha.6
62
+ * **@visulima/pail:** upgraded to 4.0.0-alpha.9
63
+ * **@visulima/path:** upgraded to 3.0.0-alpha.7
64
+ * **@visulima/string:** upgraded to 3.0.0-alpha.8
65
+
66
+ ## @visulima/cerebro [3.0.0-alpha.8](https://github.com/visulima/visulima/compare/@visulima/cerebro@3.0.0-alpha.7...@visulima/cerebro@3.0.0-alpha.8) (2026-03-26)
67
+
68
+ ### Bug Fixes
69
+
70
+ * **cerebro:** use workspace:* for internal [@visulima](https://github.com/visulima) deps ([6647854](https://github.com/visulima/visulima/commit/6647854b69a518466318af623938c0435f3a2579))
71
+ * **web:** improve build setup with incremental stats caching and prod install ([fe33e75](https://github.com/visulima/visulima/commit/fe33e75827586779b4b3a0c6d57b39f889ee6207))
72
+
73
+ ### Miscellaneous Chores
74
+
75
+ * **cerebro:** migrate deps to pnpm catalogs ([75cfac0](https://github.com/visulima/visulima/commit/75cfac01080464cc07279164520177472aff3b13))
76
+
77
+ ### Code Refactoring
78
+
79
+ * **docs:** migrate Nextra components to fumadocs-ui, remove Nextra stripping ([484878f](https://github.com/visulima/visulima/commit/484878f01879363ef5e9a0282904dc4627d6060c))
80
+
81
+
82
+ ### Dependencies
83
+
84
+ * **@visulima/colorize:** upgraded to 2.0.0-alpha.6
85
+ * **@visulima/tabular:** upgraded to 4.0.0-alpha.7
86
+ * **@visulima/boxen:** upgraded to 3.0.0-alpha.7
87
+ * **@visulima/command-line-args:** upgraded to 2.0.0-alpha.5
88
+ * **@visulima/error:** upgraded to 6.0.0-alpha.6
89
+ * **@visulima/find-cache-dir:** upgraded to 3.0.0-alpha.5
90
+ * **@visulima/pail:** upgraded to 4.0.0-alpha.8
91
+ * **@visulima/path:** upgraded to 3.0.0-alpha.6
92
+ * **@visulima/string:** upgraded to 3.0.0-alpha.7
93
+
94
+ ## @visulima/cerebro [3.0.0-alpha.7](https://github.com/visulima/visulima/compare/@visulima/cerebro@3.0.0-alpha.6...@visulima/cerebro@3.0.0-alpha.7) (2026-03-16)
95
+
96
+ ### Miscellaneous Chores
97
+
98
+ * **cerebro:** update dependencies ([401f0bf](https://github.com/visulima/visulima/commit/401f0bf2bab395ac191e48cded78fa354970b245))
99
+ * visulima website ([#591](https://github.com/visulima/visulima/issues/591)) ([59ab2e2](https://github.com/visulima/visulima/commit/59ab2e2befb03e51cd2088956f83d9b87de6d033))
100
+
101
+
102
+ ### Dependencies
103
+
104
+ * **@visulima/pail:** upgraded to 4.0.0-alpha.7
105
+
106
+ ## @visulima/cerebro [3.0.0-alpha.6](https://github.com/visulima/visulima/compare/@visulima/cerebro@3.0.0-alpha.5...@visulima/cerebro@3.0.0-alpha.6) (2026-03-06)
107
+
108
+ ### Bug Fixes
109
+
110
+ * **cerebro:** update packem to 2.0.0-alpha.54 ([bcc08fd](https://github.com/visulima/visulima/commit/bcc08fdf6eed77b84bdff0fe40dd4fe7dd74a463))
111
+
112
+ ### Documentation
113
+
114
+ * **cerebro,prisma-dmmf-transformer,jsdoc-open-api:** add comprehensive Fumadocs documentation ([891b308](https://github.com/visulima/visulima/commit/891b308a34bca2765a4a97ea450648d20d90e0cf))
115
+
116
+ ### Miscellaneous Chores
117
+
118
+ * **cerebro:** update dependencies ([a276082](https://github.com/visulima/visulima/commit/a27608237e7dd33bed639101147f7ee36f1cdaec))
119
+ * **cerebro:** update dependencies ([60f2a71](https://github.com/visulima/visulima/commit/60f2a717e23220c394a31fde456291e42348fddd))
120
+ * **terminal:** update dependencies ([a5bb91a](https://github.com/visulima/visulima/commit/a5bb91a66f2be2ade485d586156a54c347a23cc9))
121
+ * update lock file maintenance ([d83e716](https://github.com/visulima/visulima/commit/d83e71697b75d24704185b66bb521a934d2db02d))
122
+ * year update ([47f4105](https://github.com/visulima/visulima/commit/47f410596ce7190cfea36a073db32e0cec50bbcd))
123
+
124
+
125
+ ### Dependencies
126
+
127
+ * **@visulima/colorize:** upgraded to 2.0.0-alpha.5
128
+ * **@visulima/tabular:** upgraded to 4.0.0-alpha.6
129
+ * **@visulima/boxen:** upgraded to 3.0.0-alpha.6
130
+ * **@visulima/command-line-args:** upgraded to 2.0.0-alpha.4
131
+ * **@visulima/error:** upgraded to 6.0.0-alpha.5
132
+ * **@visulima/find-cache-dir:** upgraded to 3.0.0-alpha.4
133
+ * **@visulima/pail:** upgraded to 4.0.0-alpha.6
134
+ * **@visulima/path:** upgraded to 3.0.0-alpha.5
135
+ * **@visulima/string:** upgraded to 3.0.0-alpha.6
136
+
137
+ ## @visulima/cerebro [3.0.0-alpha.5](https://github.com/visulima/visulima/compare/@visulima/cerebro@3.0.0-alpha.4...@visulima/cerebro@3.0.0-alpha.5) (2025-12-27)
138
+
139
+ ### Bug Fixes
140
+
141
+ * **cerebro:** update package files ([5161bbd](https://github.com/visulima/visulima/commit/5161bbd0abf7f5feb71c1d01b06ba48ec31545b4))
142
+ * **dependencies:** update [@bomb](https://github.com/bomb).sh/tab to version 0.0.11 in package.json files ([9d50ce3](https://github.com/visulima/visulima/commit/9d50ce3bb1ae8209ce56173edbf7bd86837438ce))
143
+
144
+
145
+ ### Dependencies
146
+
147
+ * **@visulima/colorize:** upgraded to 2.0.0-alpha.4
148
+ * **@visulima/tabular:** upgraded to 4.0.0-alpha.5
149
+ * **@visulima/boxen:** upgraded to 3.0.0-alpha.5
150
+ * **@visulima/command-line-args:** upgraded to 2.0.0-alpha.3
151
+ * **@visulima/error:** upgraded to 6.0.0-alpha.3
152
+ * **@visulima/find-cache-dir:** upgraded to 3.0.0-alpha.3
153
+ * **@visulima/pail:** upgraded to 4.0.0-alpha.5
154
+ * **@visulima/path:** upgraded to 3.0.0-alpha.4
155
+ * **@visulima/string:** upgraded to 3.0.0-alpha.5
156
+
157
+ ## @visulima/cerebro [3.0.0-alpha.4](https://github.com/visulima/visulima/compare/@visulima/cerebro@3.0.0-alpha.3...@visulima/cerebro@3.0.0-alpha.4) (2025-12-13)
158
+
159
+ ### Miscellaneous Chores
160
+
161
+ * fixed project.json names and schema path ([964722f](https://github.com/visulima/visulima/commit/964722f691db205c7edb9aa6db29e849a647500b))
162
+
163
+
164
+ ### Dependencies
165
+
166
+ * **@visulima/tabular:** upgraded to 4.0.0-alpha.4
167
+ * **@visulima/boxen:** upgraded to 3.0.0-alpha.4
168
+ * **@visulima/pail:** upgraded to 4.0.0-alpha.4
169
+ * **@visulima/string:** upgraded to 3.0.0-alpha.4
170
+
171
+ ## @visulima/cerebro [3.0.0-alpha.3](https://github.com/visulima/visulima/compare/@visulima/cerebro@3.0.0-alpha.2...@visulima/cerebro@3.0.0-alpha.3) (2025-12-11)
172
+
173
+ ### Bug Fixes
174
+
175
+ * update package OG images across multiple packages ([f08e4dd](https://github.com/visulima/visulima/commit/f08e4dd2b105ccb29c8412020a9c2be36d6c1e9e))
176
+
177
+
178
+ ### Dependencies
179
+
180
+ * **@visulima/colorize:** upgraded to 2.0.0-alpha.3
181
+ * **@visulima/tabular:** upgraded to 4.0.0-alpha.3
182
+ * **@visulima/boxen:** upgraded to 3.0.0-alpha.3
183
+ * **@visulima/command-line-args:** upgraded to 2.0.0-alpha.2
184
+ * **@visulima/error:** upgraded to 6.0.0-alpha.2
185
+ * **@visulima/find-cache-dir:** upgraded to 3.0.0-alpha.2
186
+ * **@visulima/pail:** upgraded to 4.0.0-alpha.3
187
+ * **@visulima/path:** upgraded to 3.0.0-alpha.3
188
+ * **@visulima/string:** upgraded to 3.0.0-alpha.3
189
+
190
+ ## @visulima/cerebro [3.0.0-alpha.2](https://github.com/visulima/visulima/compare/@visulima/cerebro@3.0.0-alpha.1...@visulima/cerebro@3.0.0-alpha.2) (2025-12-08)
191
+
192
+
193
+ ### Dependencies
194
+
195
+ * **@visulima/tabular:** upgraded to 4.0.0-alpha.2
196
+ * **@visulima/boxen:** upgraded to 3.0.0-alpha.2
197
+ * **@visulima/pail:** upgraded to 4.0.0-alpha.2
198
+ * **@visulima/string:** upgraded to 3.0.0-alpha.2
199
+
200
+ ## @visulima/cerebro [3.0.0-alpha.1](https://github.com/visulima/visulima/compare/@visulima/cerebro@2.1.5...@visulima/cerebro@3.0.0-alpha.1) (2025-12-07)
201
+
202
+ ### ⚠ BREAKING CHANGES
203
+
204
+ * change min node version to 22.13
205
+
206
+ ### Bug Fixes
207
+
208
+ * add new package image, fixed readme rendering on npm, fixed building of packages ([b790ba2](https://github.com/visulima/visulima/commit/b790ba253ea07fef83528fd822a678facf021b5f))
209
+ * update Node.js engine version requirement to >=22.13 in multiple package.json files for improved compatibility ([b828e9a](https://github.com/visulima/visulima/commit/b828e9aeaebfc798eecddccd90e6ec7560c6d36a))
210
+ * update package.json description and keywords ([#578](https://github.com/visulima/visulima/issues/578)) ([154709c](https://github.com/visulima/visulima/commit/154709c05e71d1ffd3e360b27e12febd817912f0))
211
+
212
+ ### Miscellaneous Chores
213
+
214
+ * moved all packages into groups ([0615e9d](https://github.com/visulima/visulima/commit/0615e9d14a8a886e11da529ce150cf31ca973c10))
215
+ * update @anolilab/semantic-release-pnpm and @anolilab/semantic-release-preset to versions 3.2.2 and 12.1.2 across multiple package.json files for improved compatibility ([3921626](https://github.com/visulima/visulima/commit/3921626141fe5da398749bf0ba675f1596f18afb))
216
+ * update dependencies across multiple packages to improve compatibility and performance, including upgrading `@anolilab/semantic-release-pnpm` and `@anolilab/semantic-release-preset` to versions 3.2.0 and 12.1.0 respectively, and updating `react`, `react-dom`, and `next` versions to 19.2.1 and 16.0.7 in various package.json files ([aee8fcd](https://github.com/visulima/visulima/commit/aee8fcd796ae9b8d055903260e7150996ea9f53d))
217
+
218
+
219
+ ### Dependencies
220
+
221
+ * **@visulima/tabular:** upgraded to 4.0.0-alpha.1
222
+ * **@visulima/boxen:** upgraded to 3.0.0-alpha.1
223
+ * **@visulima/command-line-args:** upgraded to 2.0.0-alpha.1
224
+ * **@visulima/error:** upgraded to 6.0.0-alpha.1
225
+ * **@visulima/find-cache-dir:** upgraded to 3.0.0-alpha.1
226
+ * **@visulima/pail:** upgraded to 4.0.0-alpha.1
227
+ * **@visulima/string:** upgraded to 3.0.0-alpha.1
228
+
1
229
  ## @visulima/cerebro [2.1.5](https://github.com/visulima/visulima/compare/@visulima/cerebro@2.1.4...@visulima/cerebro@2.1.5) (2025-11-19)
2
230
 
3
231
  ### Miscellaneous Chores