fba-cli 1.6.7 → 1.6.8
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 +2 -0
- package/README.md +14 -0
- package/pack/{fba-cli-1.6.7.tgz → fba-cli-1.6.8.tgz} +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. See
|
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
6
|
|
|
7
|
+
## [1.6.8](https://github.com/mbehr1/fba-cli/compare/v1.6.7...v1.6.8) (2025-03-29)
|
|
8
|
+
|
|
7
9
|
## [1.6.7](https://github.com/mbehr1/fba-cli/compare/v1.6.6...v1.6.7) (2025-03-02)
|
|
8
10
|
|
|
9
11
|
|
package/README.md
CHANGED
|
@@ -81,6 +81,20 @@ and then use `fba-cli`:
|
|
|
81
81
|
fba-cli exec -p 127.0.0.1:7777 -c config.json analysis.fba recorded.dlt recorded_p2.dlt > analysis_report.md
|
|
82
82
|
```
|
|
83
83
|
|
|
84
|
+
### Hint for Windows Powershell users
|
|
85
|
+
|
|
86
|
+
Powershell seems to default to utf-16 and not utf-8. If you redirect the output to a file you do need to change the encoding first:
|
|
87
|
+
|
|
88
|
+
```powershell
|
|
89
|
+
$OutputEncoding = [Console]::InputEncoding = [Console]::OutputEncoding = [System.Text.UTF8Encoding]::new()
|
|
90
|
+
|
|
91
|
+
# fba-cli exec -p host:port -c <config_file> <list of fba files> <list of DLT files>
|
|
92
|
+
# e.g.
|
|
93
|
+
npm.cmd run fba-cli exec -p 127.0.0.1:7777 -c config.json analysis.fba recorded.dlt recorded_p2.dlt > analysis_report.md
|
|
94
|
+
# seems that powershell doesnt allow the binary/scripts to be directly executed. In that case you can start via:
|
|
95
|
+
node dist\index.js exec -p 127.0.0.1:7777 -c config.json analysis.fba recorded.dlt > analysis_report.md
|
|
96
|
+
```
|
|
97
|
+
|
|
84
98
|
### Export filters in DLT-Viewer format:
|
|
85
99
|
|
|
86
100
|
```bash
|
|
Binary file
|