Skip to content

Releases: Adjective-Object/good-fences-rs-core

v0.18.4

03 Dec 21:05
Compare
Choose a tag to compare

v0.18.3

03 Dec 19:39
Compare
Choose a tag to compare
v0.18.3

v0.18.2

02 Dec 19:40
Compare
Choose a tag to compare
v0.18.2

v0.18.1

19 Nov 23:53
Compare
Choose a tag to compare
v0.18.1

v0.16.0: Implement human-readable `Display` for UnusedFinderReport (#79)

20 Aug 15:59
8035c04
Compare
Choose a tag to compare
Implements a human-readable `Display` for UnusedFinderReport.

---------

Co-authored-by: Max Huang-Hobbs <[email protected]>

v0.15.0

19 Aug 23:19
Compare
Choose a tag to compare
applying package updates

v0.14.2: add report_exported_items flag to gate reporting exported items (#77)

19 Aug 23:17
6afa7ac
Compare
Choose a tag to compare
Disable per-item reporting with report_exported_items flag

This is for cleaner test reporting while debugging unused files in
`unused_bin`

---------

Co-authored-by: Max Huang-Hobbs <[email protected]>

v0.14.1: Massive un-reviewable project restructuring (#76)

14 Aug 16:58
ebc7786
Compare
Choose a tag to compare
This change decomposes the project from a single crate into a number of
crates. The decomposition is not complete, but it's enough to extract
unused_finder as a separate library from good_fences.

The motivation for this change is to allow debugging unused_finder with
LLDB without linking against `node`. before this change, any code that
referenced `napi` would require linking against `node`, which is
difficult to implement in vscode's development tooling. Instead, this
change restructures the code so that subsets of it can be compiled and
executed without linking against node, for the sake of debugging that
functionality.

In this case, `unused_bin` is introduced as a CLI entrypoint to
`unused_finder`, used only for debugging it against a project. The
launch configuration in `.vscode/launch.json` is set up to run
`unused_bin` with against some on-disk `--config-path` argument, which
is expected to be manually confiured by the user, or generated by
project-specific build tooling.

---------

Co-authored-by: Max Huang-Hobbs <[email protected]>

v0.14.0: update yarn + cargo (#75)

05 Aug 18:41
dd2dc53
Compare
Choose a tag to compare
Updates yarn & cargo

---------

Co-authored-by: Max Huang-Hobbs <[email protected]>

v0.13.2

21 May 21:28
2df0639
Compare
Choose a tag to compare
Fixed issue preventing unused-finder work on newly-created codespaces…