@rockcarver/frodo-cli 2.0.4 → 2.0.5
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 +26 -1
- package/dist/app.cjs +3456 -2426
- package/dist/app.cjs.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Improvements to the `frodo script` commands:
|
|
13
|
+
|
|
14
|
+
- Added the `-i`/`--script-id` option to import and export scripts by id.
|
|
15
|
+
- Added the `--no-deps` option to not include library scripts in exports of single scripts. Similarly adds the option on single script imports using the same flag to not import library dependencies if so desired.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Update to frodo-lib 2.1.0
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- Fixes to the handling of scripts in the `frodo script` commands and the `frodo config import` command:
|
|
24
|
+
|
|
25
|
+
- Fixing many bugs related to script extraction. For example, there were certain cases where importing wouldn't function correctly due to being unable to find the extracted script(s). For exports, library scripts weren't being extracted correctly either. Therefore, an overhaul was done to try and help simplify the extraction process to that it can work for multiple scripts if dealing with library scripts both on export and import.
|
|
26
|
+
- Fixing many errors in the watch option for script imports. One big one was if there were several scripts for a single json file (e.g. when exporting scripts with library scripts) that only one of the scripts would correctly be watched. This was fixed by creating mappings before watching begins to map extracted script files with their corresponding json files so it functions correctly.
|
|
27
|
+
- Fixing a small bug with config imports where, if the working directory started with `.` or `./` it would usually fail due to being unable to locate the expected files it was looking for.
|
|
28
|
+
|
|
29
|
+
## [2.0.5-0] - 2024-08-16
|
|
30
|
+
|
|
31
|
+
## [2.0.4] - 2024-08-14
|
|
32
|
+
|
|
10
33
|
### Changed
|
|
11
34
|
|
|
12
35
|
- Better detection of homebrew vs binary vs NPM version
|
|
@@ -1919,7 +1942,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1919
1942
|
- Fixed problem with adding connection profiles
|
|
1920
1943
|
- Miscellaneous bug fixes
|
|
1921
1944
|
|
|
1922
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.
|
|
1945
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.5-0...HEAD
|
|
1946
|
+
[2.0.5-0]: https://github.com/rockcarver/frodo-cli/compare/v2.0.4...v2.0.5-0
|
|
1947
|
+
[2.0.4]: https://github.com/rockcarver/frodo-cli/compare/v2.0.3...v2.0.4
|
|
1923
1948
|
[2.0.3]: https://github.com/rockcarver/frodo-cli/compare/v2.0.2...v2.0.3
|
|
1924
1949
|
[2.0.2]: https://github.com/rockcarver/frodo-cli/compare/v2.0.1...v2.0.2
|
|
1925
1950
|
[2.0.1]: https://github.com/rockcarver/frodo-cli/compare/v2.0.1-0...v2.0.1
|