feat: display included scripts in publish command
Some checks are pending
Test & Lint / lint (push) Waiting to run

This commit is contained in:
daimond113 2024-12-13 23:52:45 +01:00
parent 7466131f04
commit 919b0036e5
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C
2 changed files with 13 additions and 0 deletions

View file

@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Added
- Display included scripts in `publish` command by @daimond113
### Fixed
- Add Roblox types in linker modules even with no config generator script by @daimond113

View file

@ -499,6 +499,16 @@ info: otherwise, the file was deemed unnecessary, if you don't understand why, p
.bin_path()
.map_or("(none)".to_string(), |p| p.to_string())
);
println!(
"\tscripts: {}",
manifest
.target
.scripts()
.filter(|s| !s.is_empty())
.map_or("(none)".to_string(), |s| {
s.keys().cloned().collect::<Vec<_>>().join(", ")
})
);
}
println!(