mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-01-10 01:39:10 +00:00
feat: display included scripts in publish command
Some checks are pending
Test & Lint / lint (push) Waiting to run
Some checks are pending
Test & Lint / lint (push) Waiting to run
This commit is contained in:
parent
7466131f04
commit
919b0036e5
2 changed files with 13 additions and 0 deletions
|
@ -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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
### Added
|
||||||
|
- Display included scripts in `publish` command by @daimond113
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Add Roblox types in linker modules even with no config generator script by @daimond113
|
- Add Roblox types in linker modules even with no config generator script by @daimond113
|
||||||
|
|
||||||
|
|
|
@ -499,6 +499,16 @@ info: otherwise, the file was deemed unnecessary, if you don't understand why, p
|
||||||
.bin_path()
|
.bin_path()
|
||||||
.map_or("(none)".to_string(), |p| p.to_string())
|
.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!(
|
println!(
|
||||||
|
|
Loading…
Reference in a new issue