@visulima/cerebro 2.1.0 → 2.1.2
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/CHANGELOG.md +31 -0
- package/LICENSE.md +2375 -8
- package/README.md +279 -24
- package/dist/cli.d.ts +203 -0
- package/dist/commands/completion-command.d.ts +6 -6
- package/dist/commands/help-command.d.ts +6 -8
- package/dist/commands/help-command.js +1 -1
- package/dist/commands/readme-command.d.ts +6 -6
- package/dist/commands/version-command.d.ts +3 -6
- package/dist/constants.d.ts +29 -0
- package/dist/default-env.d.ts +7 -0
- package/dist/default-options.d.ts +3 -0
- package/dist/empty-toolbox.d.ts +15 -0
- package/dist/errors/cerebro-error.d.ts +10 -0
- package/dist/errors/command-not-found-error.d.ts +9 -0
- package/dist/errors/command-validation-error.d.ts +10 -0
- package/dist/errors/completion-error.d.ts +9 -0
- package/dist/errors/conflicting-options-error.d.ts +10 -0
- package/dist/errors/plugin-error.d.ts +9 -0
- package/dist/errors/update-notifier-error.d.ts +7 -0
- package/dist/index.d.ts +93 -50
- package/dist/index.js +1 -1
- package/dist/logger/create-pail-logger.d.ts +7 -4
- package/dist/packem_chunks/has-new-version.js +1 -1
- package/dist/packem_shared/{Cerebro-B25E57-r.js → Cerebro-ByyROuRU.js} +4 -4
- package/dist/packem_shared/{help-command-C_CdZQSd.js → help-command-CIRIXN03.js} +1 -1
- package/dist/plugin-manager.d.ts +53 -0
- package/dist/plugins/error-handler-plugin.d.ts +16 -10
- package/dist/plugins/runtime-version-check-plugin.d.ts +15 -10
- package/dist/plugins/update-notifier/cache.d.ts +11 -0
- package/dist/plugins/update-notifier/get-distribution-version.d.ts +2 -0
- package/dist/plugins/update-notifier/has-new-version.d.ts +14 -0
- package/dist/plugins/update-notifier/update-notifier-plugin.d.ts +9 -21
- package/dist/types/cli.d.ts +102 -0
- package/dist/types/command-line-usage.d.ts +37 -0
- package/dist/types/command.d.ts +136 -0
- package/dist/types/option-types.d.ts +83 -0
- package/dist/types/options.d.ts +4 -0
- package/dist/types/plugin.d.ts +53 -0
- package/dist/types/toolbox.d.ts +96 -0
- package/dist/util/arg-processing/get-boolean-values.d.ts +7 -0
- package/dist/util/arg-processing/get-parameter-option.d.ts +7 -0
- package/dist/util/arg-processing/map-option-type-label.d.ts +3 -0
- package/dist/util/arg-processing/option-is-boolean.d.ts +9 -0
- package/dist/util/arg-processing/remove-boolean-values.d.ts +9 -0
- package/dist/util/command-line-commands.d.ts +10 -0
- package/dist/util/command-line-usage/get-terminal-width.d.ts +7 -0
- package/dist/util/command-line-usage/index.d.ts +3 -0
- package/dist/util/command-line-usage/section/base-section.d.ts +8 -0
- package/dist/util/command-line-usage/section/content-section.d.ts +65 -0
- package/dist/util/command-line-usage/section/option-list-section.d.ts +44 -0
- package/dist/util/command-processing/command-processor.d.ts +37 -0
- package/dist/util/command-processing/command-validation.d.ts +17 -0
- package/dist/util/command-processing/nested-command-parser.d.ts +25 -0
- package/dist/util/command-processing/option-processor.d.ts +44 -0
- package/dist/util/data-processing/list-missing-arguments.d.ts +15 -0
- package/dist/util/data-processing/merge-arguments.d.ts +7 -0
- package/dist/util/general/find-alternatives.d.ts +8 -0
- package/dist/util/general/hide-bin.d.ts +2 -0
- package/dist/util/general/parse-raw-command.d.ts +7 -0
- package/dist/util/general/register-exception-handler.d.ts +9 -0
- package/dist/util/general/runtime-process.d.ts +65 -0
- package/dist/util/general/semver-gt.d.ts +2 -0
- package/dist/util/general/validate-input.d.ts +24 -0
- package/dist/util/process-env-variables.d.ts +9 -0
- package/dist/util/security.d.ts +58 -0
- package/dist/util/text-processing/template-format.d.ts +5 -0
- package/package.json +6 -6
- package/dist/packem_shared/index.d-BkzZomTF.d.ts +0 -65
- package/dist/packem_shared/plugin-manager-BjEuiNxv.d.ts +0 -147
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
## @visulima/cerebro [2.1.2](https://github.com/visulima/visulima/compare/@visulima/cerebro@2.1.1...@visulima/cerebro@2.1.2) (2025-11-13)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* update CLI and plugin manager types to use Console instead of ExtendedLogger ([ff6d2cb](https://github.com/visulima/visulima/commit/ff6d2cbaceccfbde47b6bfb6e957a6077fa1db0d))
|
|
6
|
+
|
|
7
|
+
## @visulima/cerebro [2.1.1](https://github.com/visulima/visulima/compare/@visulima/cerebro@2.1.0...@visulima/cerebro@2.1.1) (2025-11-12)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **cerebro:** bump version to 2.1.0 ([86fbddd](https://github.com/visulima/visulima/commit/86fbddd56ac8ecf25f75266cb0e685b6c702263c))
|
|
12
|
+
* **cerebro:** enhance documentation ([390dc3d](https://github.com/visulima/visulima/commit/390dc3d0198c427c8f43f687ad6250667c5b2491))
|
|
13
|
+
* update package configurations and TypeScript definitions ([b59aa59](https://github.com/visulima/visulima/commit/b59aa59dac1508216b944f4b917fb4a7ab1f70a4))
|
|
14
|
+
|
|
15
|
+
### Miscellaneous Chores
|
|
16
|
+
|
|
17
|
+
* update license files and clean up TypeScript definitions ([fe668cc](https://github.com/visulima/visulima/commit/fe668cc26de23591d4df54a0954455ebbe31b22d))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Dependencies
|
|
21
|
+
|
|
22
|
+
* **@visulima/colorize:** upgraded to 1.4.28
|
|
23
|
+
* **@visulima/tabular:** upgraded to 3.1.2
|
|
24
|
+
* **@visulima/boxen:** upgraded to 2.0.9
|
|
25
|
+
* **@visulima/command-line-args:** upgraded to 1.0.3
|
|
26
|
+
* **@visulima/error:** upgraded to 5.0.5
|
|
27
|
+
* **@visulima/find-cache-dir:** upgraded to 2.0.5
|
|
28
|
+
* **@visulima/pail:** upgraded to 3.2.1
|
|
29
|
+
* **@visulima/path:** upgraded to 2.0.4
|
|
30
|
+
* **@visulima/string:** upgraded to 2.0.5
|
|
31
|
+
|
|
1
32
|
## @visulima/cerebro [2.1.0](https://github.com/visulima/visulima/compare/@visulima/cerebro@2.0.3...@visulima/cerebro@2.1.0) (2025-11-07)
|
|
2
33
|
|
|
3
34
|
### Features
|