feat: add task caching with hash-based cache invalidation #1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces several significant changes to the
packages/cli
module, including enhancements to caching, logging, and dependency management. The most important changes are grouped by theme below:Caching Enhancements:
TaskCacheManager
class to manage task caching, including methods for saving and retrieving task cache, hash cache, and artifacts (packages/cli/lib/cache.ts
).packages/cli/mod.ts
).Logging Improvements:
Logger
class using thesignale
library for improved logging capabilities (packages/cli/lib/logger.ts
).console
statements with the newlogger
in various files to standardize logging (packages/cli/lib/git.ts
,packages/cli/mod.ts
). [1] [2] [3]Dependency Management:
Graph
class to include methods for handling dependency edges and levels, which helps in organizing packages based on their dependencies (packages/cli/lib/graph.ts
). [1] [2] [3] [4] [5]PackageJson
interface to include optional fields and arunx
configuration for task artifacts (packages/cli/lib/graph.ts
).Configuration Updates:
deno.json
andpackages/cli/deno.json
to include new permissions and dependencies necessary for the changes (deno.json
,packages/cli/deno.json
). [1] [2]Miscellaneous:
packages/cli/lib/git.ts
).