Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feature] Run task for affected projects & anything that directly depends on them #1654

Closed
narwold opened this issue Sep 17, 2024 · 4 comments
Labels
enhancement New feature or request

Comments

@narwold
Copy link

narwold commented Sep 17, 2024

Is your feature request related to a problem? Please describe.

The most basic need I have for this project is to run a task for what's changed, along with any dependents. It appears that I can QUERY these projects using this:

$ moon query projects --affected --dependents

@myscope/directlyaffectedlib | <dirname> | unknown | library | javascript
@myscope/depends-on-directlyaffectedlib | <dirname> | unknown | library | javascript

However, when I run the following, which I would intuitively think would operate on the same info, I get a different result:

$ moon run :mytask --affected --dependents

# runs the task for only @myscope/directlyaffectedlib

I've read a couple of issues mentioned here that reference that --affected can't be combined with --dependents for run, so I thought... well maybe at least it'll cache bust with --dependents set. However, if I run...

$ moon run :mytask --dependents

...it still only busts the cache for @myscope/directlyaffectedlib.

Describe the solution you'd like

I'd like moon to simply be able to run a given task for changed packages and anything that depends on them (1 level at least, not deeply necessarily; deep dependency is a separate feature request already covered by someone else).

Describe alternatives you've considered

The only way I'm able to achieve this basic ask is like this:

moon run :release --query="projectName=[$(moon query projects --affected --dependents --json | jq -r '.projects | map(.id) | join(",")')]"

Am I doing something wrong? Is there a more simple way to accomplish this?

Additional context

@narwold narwold added the enhancement New feature or request label Sep 17, 2024
@narwold narwold changed the title [feature] [feature] Run task for affected projects & anything that depends on them Sep 17, 2024
@narwold narwold changed the title [feature] Run task for affected projects & anything that depends on them [feature] Run task for affected projects & anything that directly depends on them Sep 17, 2024
@milesj
Copy link
Collaborator

milesj commented Sep 17, 2024

@narwold If you run the task with --log trace it logs why something was or wasn't affected. This may help in figuring out what's going on.

@narwold
Copy link
Author

narwold commented Sep 18, 2024

Logs:

❯ moon :release --affected --dependents --log trace -u
[DEBUG 2024-09-18 09:13:39.272] moon  Running moon v1.28.2 (with ~/.moon/bin/moon)  args=["moon", "run", ":release", "--affected", "--dependents", "--log", "trace", "-u"]
[DEBUG 09:13:39.272] moon_app::session  Creating new application session 
[TRACE 09:13:39.272] moon_console::console  Creating buffered console 
[TRACE 09:13:39.272] starbase::app  Running startup phase 
[DEBUG 09:13:39.272] moon_app::systems::startup  Attempting to find workspace root from current working directory  working_dir="/reporoot"
[TRACE 09:13:39.272] starbase_utils::fs  Traversing upwards to find a file/root  file=".moon" dir="/reporoot"
[DEBUG 09:13:39.272] moon_app::systems::startup  Found workspace root  workspace_root="/reporoot" working_dir="/reporoot"
[DEBUG 09:13:39.272] moon_env  Creating moon environment, detecting store  store="/Users/jonathannarwold/.moon"
[DEBUG 09:13:39.272] proto_core::proto  Creating proto environment, detecting store  store="/Users/jonathannarwold/.proto"
[DEBUG 09:13:39.273] moon_app::systems::startup  Loading .moon/workspace.yml (required)  config_file="/reporoot/.moon/workspace.yml"
[DEBUG 09:13:39.273] moon_app::systems::startup  Attempting to load .moon/tasks.yml and .moon/tasks/**/*.yml (optional)  config_file="/reporoot/.moon/tasks.yml"
[DEBUG 09:13:39.273] moon_app::systems::startup  Attempting to load .moon/toolchain.yml (optional)  config_file="/reporoot/.moon/toolchain.yml"
[TRACE 09:13:39.273] schematic::config::loader  Loading configuration  config="WorkspaceConfig"
[TRACE 09:13:39.273] schematic::config::loader  Loading partial configuration  config="InheritedTasksConfig"
[TRACE 09:13:39.273] schematic::config::loader  Creating layer from source  config="WorkspaceConfig" source="/reporoot/.moon/workspace.yml"
[TRACE 09:13:39.273] schematic::config::loader  Creating layer from source  config="InheritedTasksConfig" source="/reporoot/.moon/tasks.yml"
[DEBUG 09:13:39.273] proto_core::proto_config  Loading local config only 
[DEBUG 09:13:39.273] proto_core::proto_config  Merged 0 configs 
[TRACE 09:13:39.273] schematic::config::loader  Merging partial layers into a final result  config="InheritedTasksConfig"
[TRACE 09:13:39.273] schematic::config::loader  Merging partial layers into a final result  config="WorkspaceConfig"
[TRACE 09:13:39.273] schematic::config::loader  Loading configuration  config="ToolchainConfig"
[TRACE 09:13:39.273] schematic::config::loader  Creating layer from source  config="ToolchainConfig" source="/reporoot/.moon/toolchain.yml"
[DEBUG 09:13:39.273] moon_app::systems::startup  Loaded 1 task configs to inherit  scopes=["*"]
[TRACE 09:13:39.273] schematic::config::loader  Merging partial layers into a final result  config="ToolchainConfig"
[TRACE 09:13:39.273] moon_config::toolchain_config  Inheriting node plugin from proto  plugin="https://github.com/moonrepo/tools/releases/download/node_tool-v0.12.0/node_tool.wasm"
[TRACE 09:13:39.273] moon_config::toolchain::node_config  Inheriting pnpm plugin from proto  plugin="https://github.com/moonrepo/tools/releases/download/node_depman_tool-v0.13.0/node_depman_tool.wasm"
[TRACE 09:13:39.274] starbase::app  Running analyze phase 
[DEBUG 09:13:39.274] moon_cache::cache_engine  Creating cache engine  cache_dir="/reporoot/.moon/cache"
[DEBUG 09:13:39.274] moon_cache::hash_engine  Creating hash engine  hashes_dir="/reporoot/.moon/cache/hashes" outputs_dir="/reporoot/.moon/cache/outputs"
[DEBUG 09:13:39.274] moon_cache::state_engine  Creating states engine  states_dir="/reporoot/.moon/cache/states"
[DEBUG 09:13:39.274] moon_app::systems::analyze  Checking if proto is installed  proto="/Users/jonathannarwold/.proto/tools/proto/0.40.4/proto"
[DEBUG 09:13:39.274] moon_app::systems::analyze  Registering platforms based on toolchain configuration  platforms=[Node]
[TRACE 09:13:39.274] starbase::app  Running execute phase 
[DEBUG 09:13:39.274] moon_vcs::git  Using git as a version control system 
[DEBUG 09:13:39.274] moon_vcs::git  Attempting to find a .git directory or file  starting_dir="/reporoot"
[DEBUG 09:13:39.274] moon_cache_item::cache_item  Cache hit, reading item  cache="/reporoot/.moon/cache/states/moonVersionCheck.json"
[DEBUG 09:13:39.274] moon_vcs::git  Found a .git directory (repository root)  git="/reporoot/.git"
[TRACE 09:13:39.274] starbase_utils::fs  Reading file  file="/reporoot/.moon/cache/states/moonVersionCheck.json"
[DEBUG 09:13:39.274] moon_vcs::git  Loading ignore rules from .gitignore  ignore_file="/reporoot/.gitignore"
[TRACE 09:13:39.274] starbase_utils::json  Reading JSON file  file="/reporoot/.moon/cache/states/moonVersionCheck.json"
[DEBUG 09:13:39.275] moon_project_graph::project_graph_builder  Building project graph 
[DEBUG 09:13:39.275] moon_project_graph::project_graph_builder  Locating projects with globs  globs=["directlyaffectedlib", "depends-on-directlyaffectedlib"]
[DEBUG 09:13:39.277] moon_project_graph::project_graph_builder  Extending project graph from subscribers 
[DEBUG 09:13:39.277] log  Loading names (aliases) from project package.json's  log.target="moon:node-platform" log.module_path="moon_node_platform::node_platform" log.file="legacy/node/platform/src/node_platform.rs" log.line=149
[TRACE 09:13:39.277] log  Loading /reporoot/depends-on-directlyaffectedlib/package.json  log.target="moon:lang:config" log.module_path="moon_node_lang::package_json::cache_container" log.file="legacy/node/lang/src/package_json.rs" log.line=10
[TRACE 09:13:39.277] starbase_utils::fs  Reading file  file="/reporoot/depends-on-directlyaffectedlib/package.json"
[TRACE 09:13:39.277] starbase_utils::json  Reading JSON file  file="/reporoot/depends-on-directlyaffectedlib/package.json"
[TRACE 09:13:39.277] log  Loading /reporoot/directlyaffectedlib/package.json  log.target="moon:lang:config" log.module_path="moon_node_lang::package_json::cache_container" log.file="legacy/node/lang/src/package_json.rs" log.line=10
[TRACE 09:13:39.277] starbase_utils::fs  Reading file  file="/reporoot/directlyaffectedlib/package.json"
[TRACE 09:13:39.277] starbase_utils::json  Reading JSON file  file="/reporoot/directlyaffectedlib/package.json"
[DEBUG 09:13:39.277] moon_project_graph::project_graph_builder  Attempting to load depends-on-directlyaffectedlib/moon.yml (optional)  id="depends-on-directlyaffectedlib" file="/reporoot/depends-on-directlyaffectedlib/moon.yml"
[TRACE 09:13:39.279] schematic::config::loader  Loading configuration  config="ProjectConfig"
[TRACE 09:13:39.279] schematic::config::loader  Creating layer from source  config="ProjectConfig" source="/reporoot/depends-on-directlyaffectedlib/moon.yml"
[TRACE 09:13:39.279] schematic::config::loader  Merging partial layers into a final result  config="ProjectConfig"
[DEBUG 09:13:39.279] moon_project_graph::project_graph_builder  Attempting to load directlyaffectedlib/moon.yml (optional)  id="directlyaffectedlib" file="/reporoot/directlyaffectedlib/moon.yml"
[TRACE 09:13:39.279] schematic::config::loader  Loading configuration  config="ProjectConfig"
[TRACE 09:13:39.279] schematic::config::loader  Creating layer from source  config="ProjectConfig" source="/reporoot/directlyaffectedlib/moon.yml"
[TRACE 09:13:39.279] schematic::config::loader  Merging partial layers into a final result  config="ProjectConfig"
[DEBUG 09:13:39.279] moon_project_graph::project_graph_builder  Loaded 2 project configs 
[DEBUG 09:13:39.281] starbase_shell::shell  Attempting to detect the current shell 
[DEBUG 09:13:39.281] starbase_shell::shell  Detecting from SHELL environment variable  env="/bin/zsh"
[DEBUG 09:13:39.281] starbase_shell::shell  Detected zsh shell 
[DEBUG 09:13:39.282] moon_process::command_inspector  Running command git hash-object --stdin-paths - .moon/tasks.yml .moon/toolchain.yml .moon/workspace.yml depends-on-directlyaffectedlib/moon.yml directlyaffectedlib/moon.yml  env_vars={} working_dir=Some("/reporoot")
[TRACE 09:13:39.310] moon_hash::hasher  Created new content hasher  label="Project graph"
[TRACE 09:13:39.310] moon_hash::hasher  Adding content to hasher  label="Project graph"
[TRACE 09:13:39.310] starbase_utils::json  Formatting JSON 
[DEBUG 09:13:39.310] moon_hash::hasher  Generated content hash  label="Project graph" hash="899bc18d1c38c354d6dd32bbcb239dc515cbb1244e443e20ad2337b0f18c2db3"
[DEBUG 09:13:39.310] moon_cache::hash_engine  Saving hash manifest  label="Project graph" manifest="/reporoot/.moon/cache/hashes/899bc18d1c38c354d6dd32bbcb239dc515cbb1244e443e20ad2337b0f18c2db3.json"
[TRACE 09:13:39.310] starbase_utils::fs  Writing file  file="/reporoot/.moon/cache/hashes/899bc18d1c38c354d6dd32bbcb239dc515cbb1244e443e20ad2337b0f18c2db3.json"
[DEBUG 09:13:39.310] moon_project_graph::project_graph_builder  Generated hash for project graph  hash="899bc18d1c38c354d6dd32bbcb239dc515cbb1244e443e20ad2337b0f18c2db3"
[DEBUG 09:13:39.310] moon_cache_item::cache_item  Cache hit, reading item  cache="/reporoot/.moon/cache/states/projects.json"
[TRACE 09:13:39.310] starbase_utils::fs  Reading file  file="/reporoot/.moon/cache/states/projects.json"
[TRACE 09:13:39.310] starbase_utils::json  Reading JSON file  file="/reporoot/.moon/cache/states/projects.json"
[DEBUG 09:13:39.310] moon_project_graph::project_graph_builder  Loading project graph with 2 projects from cache  cache="/reporoot/.moon/cache/states/partialProjectGraph.json"
[TRACE 09:13:39.310] starbase_utils::fs  Reading file  file="/reporoot/.moon/cache/states/partialProjectGraph.json"
[TRACE 09:13:39.310] starbase_utils::json  Reading JSON file  file="/reporoot/.moon/cache/states/partialProjectGraph.json"
[DEBUG 09:13:39.311] moon_project_graph::project_graph_builder  Enforcing project constraints 
[DEBUG 09:13:39.311] moon_project_graph::project_graph  Creating project graph 
[DEBUG 09:13:39.311] moon_app::queries::touched_files  Querying for touched files 
[DEBUG 09:13:39.311] moon_process::command_inspector  Running command git --version  env_vars={} working_dir=Some("/reporoot")
[DEBUG 09:13:39.329] moon_process::command_inspector  Running command git branch --show-current  env_vars={} working_dir=Some("/reporoot")
[TRACE 09:13:39.352] moon_app::queries::touched_files  Against locally touched 
[DEBUG 09:13:39.352] moon_process::command_inspector  Running command git status --porcelain --untracked-files -z  env_vars={} working_dir=Some("/reporoot")
[DEBUG 09:13:39.371] moon_app::queries::touched_files  Filtering based on touched status "all" 
[DEBUG 09:13:39.371] moon_app::queries::touched_files  Found touched files  files=["directlyaffectedlib/test.js"]
[DEBUG 09:13:39.371] moon_action_graph::action_graph_builder  Building action graph 
[DEBUG 09:13:39.371] moon_project_expander::project_expander  Expanding project @myscope/directlyaffectedlib  id="@myscope/directlyaffectedlib"
[DEBUG 09:13:39.371] moon_project_expander::project_expander  Expanding task @myscope/directlyaffectedlib:install  target="@myscope/directlyaffectedlib:install"
[TRACE 09:13:39.371] moon_project_expander::tasks_expander  Expanding environment variables  target="@myscope/directlyaffectedlib:install" env={}
[TRACE 09:13:39.371] moon_project_expander::tasks_expander  Expanding inputs into file system paths  target="@myscope/directlyaffectedlib:install" inputs=["src/**/*", ".moon/*.yml"]
[TRACE 09:13:39.371] moon_project_expander::tasks_expander  Expanding tokens and variables in args  target="@myscope/directlyaffectedlib:install" args=["install"]
[TRACE 09:13:39.372] moon_project_expander::tasks_expander  Expanding tokens and variables in command  target="@myscope/directlyaffectedlib:install" command="bundle"
[DEBUG 09:13:39.372] moon_project_expander::project_expander  Expanding task @myscope/directlyaffectedlib:release  target="@myscope/directlyaffectedlib:release"
[TRACE 09:13:39.372] moon_project_expander::tasks_expander  Expanding environment variables  target="@myscope/directlyaffectedlib:release" env={}
[TRACE 09:13:39.372] moon_project_expander::tasks_expander  Expanding inputs into file system paths  target="@myscope/directlyaffectedlib:release" inputs=["**/*", ".moon/*.yml"]
[TRACE 09:13:39.372] moon_project_expander::tasks_expander  Expanding tokens and variables in args  target="@myscope/directlyaffectedlib:release" args=["RUNNING", "THE", "RELEASE", "TASK"]
[TRACE 09:13:39.372] moon_project_expander::tasks_expander  Expanding tokens and variables in command  target="@myscope/directlyaffectedlib:release" command="echo"
[DEBUG 09:13:39.372] moon_project_expander::project_expander  Expanding project @myscope/depends-on-directlyaffectedlib  id="@myscope/depends-on-directlyaffectedlib"
[DEBUG 09:13:39.372] moon_project_expander::project_expander  Expanding task @myscope/depends-on-directlyaffectedlib:install  target="@myscope/depends-on-directlyaffectedlib:install"
[TRACE 09:13:39.372] moon_project_expander::tasks_expander  Expanding environment variables  target="@myscope/depends-on-directlyaffectedlib:install" env={}
[TRACE 09:13:39.372] moon_project_expander::tasks_expander  Expanding inputs into file system paths  target="@myscope/depends-on-directlyaffectedlib:install" inputs=["src/**/*", ".moon/*.yml"]
[TRACE 09:13:39.372] moon_project_expander::tasks_expander  Expanding tokens and variables in args  target="@myscope/depends-on-directlyaffectedlib:install" args=["install"]
[TRACE 09:13:39.372] moon_project_expander::tasks_expander  Expanding tokens and variables in command  target="@myscope/depends-on-directlyaffectedlib:install" command="bundle"
[DEBUG 09:13:39.372] moon_project_expander::project_expander  Expanding task @myscope/depends-on-directlyaffectedlib:release  target="@myscope/depends-on-directlyaffectedlib:release"
[TRACE 09:13:39.372] moon_project_expander::tasks_expander  Expanding environment variables  target="@myscope/depends-on-directlyaffectedlib:release" env={}
[TRACE 09:13:39.372] moon_project_expander::tasks_expander  Expanding inputs into file system paths  target="@myscope/depends-on-directlyaffectedlib:release" inputs=["**/*", ".moon/*.yml"]
[TRACE 09:13:39.372] moon_project_expander::tasks_expander  Expanding tokens and variables in args  target="@myscope/depends-on-directlyaffectedlib:release" args=["RUNNING", "THE", "RELEASE", "TASK"]
[TRACE 09:13:39.372] moon_project_expander::tasks_expander  Expanding tokens and variables in command  target="@myscope/depends-on-directlyaffectedlib:release" command="echo"
[DEBUG 09:13:39.373] moon_task::task  Affected by input glob  task="@myscope/directlyaffectedlib:release" input="directlyaffectedlib/test.js"
[DEBUG 09:13:39.373] moon_action_graph::action_graph_builder  Project @myscope/directlyaffectedlib is not within the dependency manager workspace, dependencies will be installed within the project instead of the root 
[DEBUG 09:13:39.373] moon_action_graph::action_graph_builder  Adding SyncWorkspace to graph  index=0
[DEBUG 09:13:39.373] moon_action_graph::action_graph_builder  Adding SetupToolchain(node:global) to graph  index=1
[TRACE 09:13:39.373] moon_action_graph::action_graph_builder  Linking requirements for index  index=1 requires=[0]
[DEBUG 09:13:39.373] moon_action_graph::action_graph_builder  Adding SyncProject(node, @myscope/directlyaffectedlib) to graph  index=2
[TRACE 09:13:39.373] moon_action_graph::action_graph_builder  Linking requirements for index  index=2 requires=[1]
[DEBUG 09:13:39.373] moon_action_graph::action_graph_builder  Adding RunTask(@myscope/directlyaffectedlib:release) to graph  index=3
[TRACE 09:13:39.373] moon_action_graph::action_graph_builder  Linking requirements for index  index=3 requires=[2]
[DEBUG 09:13:39.375] moon_task::task  Not affected by touched files  task="@myscope/depends-on-directlyaffectedlib:release"
[DEBUG 09:13:39.375] moon_action_graph::action_graph  Creating action graph 
[DEBUG 09:13:39.375] moon_action_pipeline::action_pipeline  Creating pipeline to run actions 
[DEBUG 09:13:39.375] moon_action_pipeline::action_pipeline  Registering event subscribers 
[DEBUG 09:13:39.375] moon_action_pipeline::action_pipeline  Subscribing run reports and estimates 
[DEBUG 09:13:39.375] moon_action_pipeline::action_pipeline  Subscribing cache cleanup (runner.autoCleanCache enabled)  lifetime="7 days"
[DEBUG 09:13:39.375] moon_action_pipeline::action_pipeline  Starting pipeline  total_actions=4 concurrency=10
[DEBUG 09:13:39.375] moon_action_graph::action_graph  Sorting action graph topologically  order=[0, 1, 2, 3]
[DEBUG 09:13:39.375] moon_action_pipeline::action_pipeline  Dispatching jobs in the pipeline  total_jobs=4
[DEBUG 09:13:39.375] moon_action_pipeline::action_pipeline  Waiting for jobs to return results 
[DEBUG 09:13:39.375] moon_action_pipeline::action_pipeline  Listening for ctrl+c signal 
[TRACE 09:13:39.375] moon_action_pipeline::job_dispatcher  Dispatching job  index=0 deps=[]
[TRACE 09:13:39.375] moon_action_pipeline::action_runner  Running action SyncWorkspace  index=0
[DEBUG 09:13:39.375] moon_actions::actions::sync_workspace  Syncing workspace 
[DEBUG 09:13:39.375] moon_actions::actions::sync_workspace  Syncing config schemas 
[TRACE 09:13:39.375] moon_cache_item::cache_item  Cache is not readable, skipping checks  cache="/reporoot/.moon/cache/states/configSchemas.json"
[TRACE 09:13:39.375] moon_hash::hasher  Created new content hasher  label="configSchemas.json"
[TRACE 09:13:39.375] moon_hash::hasher  Adding content to hasher  label="configSchemas.json"
[TRACE 09:13:39.375] starbase_utils::json  Formatting JSON 
[DEBUG 09:13:39.375] moon_hash::hasher  Generated content hash  label="configSchemas.json" hash="092416d7b40394d1f94cf4b3a3782d632ace026a91ba7a0df0988637dc0c8486"
[DEBUG 09:13:39.375] moon_cache::hash_engine  Saving hash manifest  label="configSchemas.json" manifest="/reporoot/.moon/cache/hashes/092416d7b40394d1f94cf4b3a3782d632ace026a91ba7a0df0988637dc0c8486.json"
[TRACE 09:13:39.375] starbase_utils::fs  Writing file  file="/reporoot/.moon/cache/hashes/092416d7b40394d1f94cf4b3a3782d632ace026a91ba7a0df0988637dc0c8486.json"
[DEBUG 09:13:39.380] moon_cache_item::cache_item  Writing cache item  cache="/reporoot/.moon/cache/states/configSchemas.json"
[TRACE 09:13:39.380] starbase_utils::json  Writing JSON file  file="/reporoot/.moon/cache/states/configSchemas.json"
[TRACE 09:13:39.380] starbase_utils::fs  Writing file  file="/reporoot/.moon/cache/states/configSchemas.json"
[TRACE 09:13:39.381] moon_action_pipeline::action_runner  Ran action SyncWorkspace in 5.711292ms  index=0 status=Passed
[TRACE 09:13:39.381] moon_action_pipeline::job_dispatcher  Dispatching job  index=1 deps=[0]
[TRACE 09:13:39.381] moon_action_pipeline::action_runner  Running action SetupToolchain(node:global)  index=1
[DEBUG 09:13:39.381] moon_actions::actions::setup_toolchain  Setting up Node global toolchain 
[TRACE 09:13:39.381] moon_cache_item::cache_item  Cache is not readable, skipping checks  cache="/reporoot/.moon/cache/states/toolchain-node-12527837096830694953.json"
[DEBUG 09:13:39.381] proto_core::proto_config  Merging loaded configs without global 
[DEBUG 09:13:39.381] proto_core::proto_config  Merged 0 configs 
[TRACE 09:13:39.381] warpgate::loader  Creating plugin loader  cache_dir="/Users/jonathannarwold/.proto/plugins"
[TRACE 09:13:39.381] warpgate::loader  Loading plugin node  id="node" locator="https://github.com/moonrepo/tools/releases/download/node_tool-v0.12.0/node_tool.wasm"
[TRACE 09:13:39.381] starbase_utils::fs  Reading file metadata  file="/Users/jonathannarwold/.proto/plugins/node-dad1cbc99a433f56594101a3298836ae44edf6fc8b855aba481e8934e9c9215d.wasm"
[TRACE 09:13:39.381] warpgate::loader  Plugin already downloaded and cached  id="node" path="/Users/jonathannarwold/.proto/plugins/node-dad1cbc99a433f56594101a3298836ae44edf6fc8b855aba481e8934e9c9215d.wasm"
[TRACE 09:13:39.381] warpgate::plugin  Storing plugin identifier  id="node"
[TRACE 09:13:39.381] warpgate::plugin  Storing host environment  id="node" env={"arch":"arm64","libc":"gnu","os":"macos","home_dir":{"path":"/userhome/","virtual_prefix":"/userhome","real_prefix":"/Users/jonathannarwold"}}
[DEBUG 09:13:39.381] proto_core::tool  Creating tool node and instantiating plugin 
[DEBUG 09:13:39.381] warpgate::client  Creating HTTP client 
[DEBUG 09:13:39.579] warpgate::client  Created HTTP client 
[TRACE 09:13:39.580] warpgate::plugin  Creating plugin container  id="node"
[TRACE 09:13:39.591] warpgate::plugin  Created plugin container  id="node" plugin="7cd04b5c-4e97-4bb5-a760-c370f7bc1b51"
[DEBUG 09:13:39.591] proto_core::tool  Created tool node and its WASM runtime 
[TRACE 09:13:39.591] warpgate::plugin  Calling guest function register_tool  id="node" plugin="7cd04b5c-4e97-4bb5-a760-c370f7bc1b51" input={"id":"node"}
[TRACE 09:13:39.591] warpgate::plugin  Called guest function register_tool  id="node" plugin="7cd04b5c-4e97-4bb5-a760-c370f7bc1b51" output={"config_schema":{"name":"NodePluginConfig","ty":{"type":"Struct","fields":{"bundled-npm":{"schema":{"ty":{"type":"Boolean"}},"hidden":false,"nullable":false,"optional":true,"read_only":false,"write_only":false},"dist-url":{"schema":{"ty":{"type":"String"}},"hidden":false,"nullable":false,"optional":true,"read_only":false,"write_only":false}},"partial":false}},"inventory":{},"name":"Node.js","plugin_version":"0.12.0","type":"Language"}
[DEBUG 09:13:39.591] proto_core::tool_manifest  Loading manifest.json  file="/Users/jonathannarwold/.proto/tools/node/manifest.json"
[TRACE 09:13:39.591] warpgate::loader  Loading plugin pnpm  id="pnpm" locator="https://github.com/moonrepo/tools/releases/download/node_depman_tool-v0.13.0/node_depman_tool.wasm"
[TRACE 09:13:39.591] starbase_utils::fs  Reading file metadata  file="/Users/jonathannarwold/.proto/plugins/pnpm-5814c47ebb63b597606a0fed2e272c19473ca88ecdec572d3481e2a225d68c6f.wasm"
[TRACE 09:13:39.591] warpgate::loader  Plugin already downloaded and cached  id="pnpm" path="/Users/jonathannarwold/.proto/plugins/pnpm-5814c47ebb63b597606a0fed2e272c19473ca88ecdec572d3481e2a225d68c6f.wasm"
[TRACE 09:13:39.591] warpgate::plugin  Storing plugin identifier  id="pnpm"
[TRACE 09:13:39.591] warpgate::plugin  Storing host environment  id="pnpm" env={"arch":"arm64","libc":"gnu","os":"macos","home_dir":{"path":"/userhome/","virtual_prefix":"/userhome","real_prefix":"/Users/jonathannarwold"}}
[DEBUG 09:13:39.591] proto_core::tool  Creating tool pnpm and instantiating plugin 
[TRACE 09:13:39.591] warpgate::plugin  Creating plugin container  id="pnpm"
[TRACE 09:13:39.605] warpgate::plugin  Created plugin container  id="pnpm" plugin="e2b62a0e-99cd-41cb-ace1-35e139b778f3"
[DEBUG 09:13:39.605] proto_core::tool  Created tool pnpm and its WASM runtime 
[TRACE 09:13:39.605] warpgate::plugin  Calling guest function register_tool  id="pnpm" plugin="e2b62a0e-99cd-41cb-ace1-35e139b778f3" input={"id":"pnpm"}
[TRACE 09:13:39.605] warpgate::plugin  Called guest function register_tool  id="pnpm" plugin="e2b62a0e-99cd-41cb-ace1-35e139b778f3" output={"config_schema":{"name":"NodeDepmanPluginConfig","ty":{"type":"Struct","fields":{"dist-url":{"schema":{"ty":{"type":"String"}},"hidden":false,"nullable":false,"optional":true,"read_only":false,"write_only":false},"shared-globals-dir":{"schema":{"ty":{"type":"Boolean"}},"hidden":false,"nullable":false,"optional":true,"read_only":false,"write_only":false}},"partial":false}},"inventory":{},"name":"pnpm","plugin_version":"0.13.0","type":"DependencyManager"}
[DEBUG 09:13:39.606] proto_core::tool_manifest  Loading manifest.json  file="/Users/jonathannarwold/.proto/tools/pnpm/manifest.json"
[DEBUG 09:13:39.606] proto_core::tool  Locating globals bin directories for tool  tool="node"
[TRACE 09:13:39.606] warpgate::plugin  Calling guest function locate_executables  id="node" plugin="7cd04b5c-4e97-4bb5-a760-c370f7bc1b51" input={"context":{"proto_version":"0.40.5","tool_dir":{"path":"/proto/tools/node/latest","virtual_prefix":"/proto","real_prefix":"/Users/jonathannarwold/.proto"},"version":"latest"}}
[TRACE 09:13:39.606] warpgate::plugin  Called guest function locate_executables  id="node" plugin="7cd04b5c-4e97-4bb5-a760-c370f7bc1b51" output={"exes_dir":"bin","globals_lookup_dirs":["$PROTO_HOME/tools/node/globals/bin"],"primary":{"exe_path":"bin/node"}}
[DEBUG 09:13:39.606] proto_core::tool  Located possible globals directories  tool="node" dirs=["/Users/jonathannarwold/.proto/tools/node/globals/bin"]
[TRACE 09:13:39.606] starbase_utils::fs  Traversing upwards to find a file/root  file="pnpm-lock.yaml" dir="/reporoot/."
[TRACE 09:13:39.606] log  Loading /reporoot/package.json  log.target="moon:lang:config" log.module_path="moon_node_lang::package_json::cache_container" log.file="legacy/node/lang/src/package_json.rs" log.line=10
[TRACE 09:13:39.606] starbase_utils::fs  Reading file  file="/reporoot/package.json"
[TRACE 09:13:39.607] starbase_utils::json  Reading JSON file  file="/reporoot/package.json"
[DEBUG 09:13:39.607] log  Removing package manager version from package.json  log.target="moon:node-platform:setup-tool" log.module_path="moon_node_platform::actions::setup_tool" log.file="legacy/node/platform/src/actions/setup_tool.rs" log.line=45
[TRACE 09:13:39.607] log  Syncing /reporoot/package.json with changes  log.target="moon:lang:config" log.module_path="moon_node_lang::package_json" log.file="/Users/runner/work/moon/moon/legacy/node/lang/src/package_json.rs" log.line=10
[TRACE 09:13:39.607] starbase_utils::fs  Reading file  file="/reporoot/package.json"
[TRACE 09:13:39.607] starbase_utils::json  Reading JSON file  file="/reporoot/package.json"
[TRACE 09:13:39.607] starbase_utils::json  Writing JSON file with .editorconfig  file="/reporoot/package.json"
[TRACE 09:13:39.607] starbase_utils::fs  Reading file  file="/reporoot/package.json"
[TRACE 09:13:39.607] starbase_utils::json  Formatting JSON with preserved indentation  indent="  "
[TRACE 09:13:39.608] starbase_utils::fs  Writing file  file="/reporoot/package.json"
[DEBUG 09:13:39.608] moon_cache_item::cache_item  Writing cache item  cache="/reporoot/.moon/cache/states/toolchain-node-12527837096830694953.json"
[TRACE 09:13:39.608] starbase_utils::json  Writing JSON file  file="/reporoot/.moon/cache/states/toolchain-node-12527837096830694953.json"
[TRACE 09:13:39.608] starbase_utils::fs  Writing file  file="/reporoot/.moon/cache/states/toolchain-node-12527837096830694953.json"
[TRACE 09:13:39.608] moon_action_pipeline::action_runner  Ran action SetupToolchain(node:global) in 227.489958ms  index=1 status=Skipped
[TRACE 09:13:39.608] moon_action_pipeline::job_dispatcher  Dispatching job  index=2 deps=[1]
[TRACE 09:13:39.608] moon_action_pipeline::action_runner  Running action SyncProject(node, @myscope/directlyaffectedlib)  index=2
[DEBUG 09:13:39.608] moon_actions::actions::sync_project  Syncing project @myscope/directlyaffectedlib 
[DEBUG 09:13:39.608] moon_cache::state_engine  Writing project snapshot  cache="/reporoot/.moon/cache/states/myscope-directlyaffectedlib/snapshot.json"
[TRACE 09:13:39.608] starbase_utils::json  Writing JSON file  file="/reporoot/.moon/cache/states/myscope-directlyaffectedlib/snapshot.json"
[TRACE 09:13:39.608] starbase_utils::fs  Writing file  file="/reporoot/.moon/cache/states/myscope-directlyaffectedlib/snapshot.json"
[TRACE 09:13:39.609] moon_action_pipeline::action_runner  Ran action SyncProject(node, @myscope/directlyaffectedlib) in 824.708µs  index=2 status=Passed
[TRACE 09:13:39.609] moon_action_pipeline::job_dispatcher  Dispatching job  index=3 deps=[2]
[TRACE 09:13:39.609] moon_action_pipeline::action_runner  Running action RunTask(@myscope/directlyaffectedlib:release)  index=3
[DEBUG 09:13:39.609] moon_task_runner::task_runner  Creating a task runner for target  task="@myscope/directlyaffectedlib:release"
[TRACE 09:13:39.609] moon_cache_item::cache_item  Cache is not readable, skipping checks  cache="/reporoot/.moon/cache/states/myscope-directlyaffectedlib/release/lastRun.json"
[DEBUG 09:13:39.609] moon_task_runner::task_runner  Caching is enabled for task, will generate a hash and manage outputs  task="@myscope/directlyaffectedlib:release"
[DEBUG 09:13:39.609] moon_task_runner::task_runner  Generating a unique hash for this task  task="@myscope/directlyaffectedlib:release"
[TRACE 09:13:39.609] moon_hash::hasher  Created new content hasher  label="RunTask(@myscope/directlyaffectedlib:release)"
[TRACE 09:13:39.609] moon_task_runner::task_runner  Including common task related fields in the hash  task="@myscope/directlyaffectedlib:release"
[DEBUG 09:13:39.610] moon_process::command_inspector  Running command git ls-files --full-name --cached --modified --others --exclude-standard directlyaffectedlib --deduplicate  env_vars={} working_dir=Some("/reporoot")
[DEBUG 09:13:39.635] moon_process::command_inspector  Running command git hash-object --stdin-paths - (truncated)  env_vars={} working_dir=Some("/reporoot")
[TRACE 09:13:39.658] moon_hash::hasher  Adding content to hasher  label="RunTask(@myscope/directlyaffectedlib:release)"
[TRACE 09:13:39.658] starbase_utils::json  Formatting JSON 
[TRACE 09:13:39.658] moon_task_runner::task_runner  Including toolchain specific fields in the hash  task="@myscope/directlyaffectedlib:release" platform=System
[TRACE 09:13:39.658] moon_hash::hasher  Adding content to hasher  label="RunTask(@myscope/directlyaffectedlib:release)"
[TRACE 09:13:39.658] starbase_utils::json  Formatting JSON 
[DEBUG 09:13:39.658] moon_hash::hasher  Generated content hash  label="RunTask(@myscope/directlyaffectedlib:release)" hash="3f0c066977329483d72acfa517219601e9de73399c571773fcb7aeadd56cd316"
[DEBUG 09:13:39.658] moon_cache::hash_engine  Saving hash manifest  label="RunTask(@myscope/directlyaffectedlib:release)" manifest="/reporoot/.moon/cache/hashes/3f0c066977329483d72acfa517219601e9de73399c571773fcb7aeadd56cd316.json"
[TRACE 09:13:39.658] starbase_utils::fs  Writing file  file="/reporoot/.moon/cache/hashes/3f0c066977329483d72acfa517219601e9de73399c571773fcb7aeadd56cd316.json"
[DEBUG 09:13:39.658] moon_task_runner::task_runner  Generated a unique hash  task="@myscope/directlyaffectedlib:release" hash="3f0c066977329483d72acfa517219601e9de73399c571773fcb7aeadd56cd316"
[DEBUG 09:13:39.658] moon_task_runner::task_runner  Running cache hydration operation  task="@myscope/directlyaffectedlib:release"
[DEBUG 09:13:39.658] moon_task_runner::task_runner  Checking if task has been cached using hash  task="@myscope/directlyaffectedlib:release" hash="3f0c066977329483d72acfa517219601e9de73399c571773fcb7aeadd56cd316"
[DEBUG 09:13:39.658] moon_task_runner::task_runner  Cache is not readable, continuing run  task="@myscope/directlyaffectedlib:release" hash="3f0c066977329483d72acfa517219601e9de73399c571773fcb7aeadd56cd316"
[DEBUG 09:13:39.658] moon_task_runner::task_runner  Nothing to hydrate  task="@myscope/directlyaffectedlib:release"
[DEBUG 09:13:39.658] moon_task_runner::task_runner  Building and executing the task command  task="@myscope/directlyaffectedlib:release"
[DEBUG 09:13:39.659] moon_task_runner::command_builder  Creating task command to execute  task="@myscope/directlyaffectedlib:release" command="echo" working_dir="/reporoot/directlyaffectedlib"
[DEBUG 09:13:39.659] moon_task_runner::command_executor  Running task (attempt 1 of 1)  task="@myscope/directlyaffectedlib:release" command="echo"
[DEBUG 09:13:39.659] moon_process::command_inspector  Running command /bin/zsh -c 'echo RUNNING THE RELEASE TASK'  env_vars={"MOON_PROJECT_SOURCE": "directlyaffectedlib", "MOON_CACHE_DIR": "/reporoot/.moon/cache", "MOON_WORKING_DIR": "/reporoot", "MOON_PROJECT_ID": "@myscope/directlyaffectedlib", "MOON_PROJECT_SNAPSHOT": "/reporoot/.moon/cache/states/myscope-directlyaffectedlib/snapshot.json", "MOON_PROJECT_ROOT": "/reporoot/directlyaffectedlib", "MOON_WORKSPACE_ROOT": "/reporoot", "MOON_TARGET": "@myscope/directlyaffectedlib:release"} working_dir=Some("/reporoot/directlyaffectedlib")
[DEBUG 09:13:39.668] moon_task_runner::command_executor  Ran task, checking conditions  task="@myscope/directlyaffectedlib:release" command="echo" exit_code=0
[DEBUG 09:13:39.668] moon_task_runner::command_executor  Task was successful, proceeding to next step  task="@myscope/directlyaffectedlib:release"
[TRACE 09:13:39.668] starbase_utils::fs  Writing file  file="/reporoot/.moon/cache/states/myscope-directlyaffectedlib/release/stderr.log"
[TRACE 09:13:39.668] starbase_utils::fs  Writing file  file="/reporoot/.moon/cache/states/myscope-directlyaffectedlib/release/stdout.log"
[DEBUG 09:13:39.668] moon_task_runner::task_runner  Running cache archiving operation  task="@myscope/directlyaffectedlib:release"
[DEBUG 09:13:39.668] moon_task_runner::task_runner  Nothing to archive  task="@myscope/directlyaffectedlib:release"
[DEBUG 09:13:39.668] moon_cache_item::cache_item  Writing cache item  cache="/reporoot/.moon/cache/states/myscope-directlyaffectedlib/release/lastRun.json"
[TRACE 09:13:39.668] starbase_utils::json  Writing JSON file  file="/reporoot/.moon/cache/states/myscope-directlyaffectedlib/release/lastRun.json"
[TRACE 09:13:39.668] starbase_utils::fs  Writing file  file="/reporoot/.moon/cache/states/myscope-directlyaffectedlib/release/lastRun.json"
[TRACE 09:13:39.668] moon_action_pipeline::action_runner  Ran action RunTask(@myscope/directlyaffectedlib:release) in 59.1355ms  index=3 status=Passed
[DEBUG 09:13:39.668] moon_action_pipeline::action_pipeline  Finished pipeline, received all results 
[DEBUG 09:13:39.669] moon_action_pipeline::subscribers::reports_subscriber  Creating run report 
[DEBUG 09:13:39.669] moon_action_pipeline::reports::estimate  Calculating a comparison estimate against other build systems 
[DEBUG 09:13:39.669] moon_cache::cache_engine  Writing cache  cache="/reporoot/.moon/cache/runReport.json"
[TRACE 09:13:39.669] starbase_utils::json  Writing JSON file  file="/reporoot/.moon/cache/runReport.json"
[TRACE 09:13:39.669] starbase_utils::fs  Writing file  file="/reporoot/.moon/cache/runReport.json"
[DEBUG 09:13:39.669] moon_action_pipeline::subscribers::cleanup_subscriber  Cleaning stale cache 
[DEBUG 09:13:39.669] moon_cache::cache_engine  Cleaning up and deleting stale cached artifacts older than "7 days" 
[TRACE 09:13:39.669] starbase_utils::fs  Removing stale contents from directory  dir="/reporoot/.moon/cache/hashes"
[TRACE 09:13:39.669] starbase_utils::fs  Reading directory  dir="/reporoot/.moon/cache/hashes"
[TRACE 09:13:39.669] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/2dab7a139f70b661739581bea3e30d7e82794ac1f346740838a0b85fbdd243e8.json"
[TRACE 09:13:39.669] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/7fa0ea630afbabb644a54ff0504654fd5d39649215658da0624f5d028aceb7c9.json"
[TRACE 09:13:39.669] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/828b34fb591c7ab5f2757c784acf63ef8d2fc357adc288984d286164d5474e75.json"
[TRACE 09:13:39.669] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/f99b87b8e3145647a2c5f0a41b4cdc46dc3a996f0c561ced063f8921cc91be61.json"
[TRACE 09:13:39.669] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/9a9a11d8f364d4141ff344bcb703e394a4c3c43a5e2be721f3abfa82a61fa189.json"
[TRACE 09:13:39.669] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/b22e4ba512cb8ca3cb4f19ac749a6dd1a3ad77817efb048d7dc8cfce517c440c.json"
[TRACE 09:13:39.669] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/d2bd14169fb7b605c3795d1e4cce1b2cc5daddcd04f8ba18bba4a4660811aa95.json"
[TRACE 09:13:39.669] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/15a2eec2fe0e0c4dfa25f6bf2e668521a2c275bd1b590e864c431cf55a7c7007.json"
[TRACE 09:13:39.669] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/5861ab4ce048a46dfeb250ec8f926eff38ad413bd0a8ea37cdb2aa590c6630db.json"
[TRACE 09:13:39.669] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/f71012069a04f08b4c7555909819e9b71f92342cbfa1c67360bbc0e515e36136.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/af7a7c8ee880dc82a5594385d66e3af63e603ad1da4f9c65ce57aa4b432d9458.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/dcbd1e5abdf49f1ac975203bdff77f88397f039e3d43508cbc00c6d25bdf4db7.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/abd516a053def74cc0a94417738c02e2c89551e12172852d7d7d8cb1fa486416.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/6ac9a0d9bea246e1e151e3b3f2079064f8ee6ed40c16106de7ca90d504029f2c.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/3f0c066977329483d72acfa517219601e9de73399c571773fcb7aeadd56cd316.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/5924fc40e469a97c5cd2b422cdf687eb8cb978c94870659a004b845fb9aecc56.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/bcfd245e94b504c932986314397fb3f39fa3b8d7aaa2d80ab912bfe9b1fcf410.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/1d65bbcf6f8af603543dc09e4c898419e0d6b716b180ecb25e4437dd61436dc3.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/c4dd69586e228c45c6538c5d788ecc9b287790f8cad1e7761026023a87df9866.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/8bb69da09e09c84db18f2dc305a31d94483375c91cec04ccace8bfd684dbb04a.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/deb3b10b45130d76ef5989f8711002f213148c0d71310da66dcc7f8afea13dce.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/daa4568248c2d50f1634989a22cb5c96cb0e240f0881a993112c3859cc3b388a.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/cdd82ddd325bdd489989c2d6981e4d8d9d012f888119ba947fadfb9f0def25f3.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/92e250dfdf3a01efac75d5bfce980a85aa57b7dffecb5e3c32186d70007d93f5.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/39ada9572cec1cc3bf7e083985b4965169ca6666ed61377b3551f9695dba8333.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/625d9c3c0f293ab33b8ddd3ae10776897d082d2ecf0fa98b76a5f32dbbc28b0d.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/2b11b36fb41f1181c720f1c5c0d417a87ed5a98f8ab8f7832759cee2f44b9b35.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/182e864e336a15a77af676ee1c4fb5c74f6ca3cda8b1696693c7ea20c5cda605.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/1c86ebc584530da8a1507ea05f98640aec72bf0cca5f2a4351066ff2ed89b9fd.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/11c61f90fb4008e6ab1fcea79e6957a85e92e27f7c928d375a58968d8a663761.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/8fe3acb3e5b453e17169fcaa8af27fa0eaad1117bf785283751868f4c8502545.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/f0bdb64544b400c37a4138f5eb90d7bc1c87e1826658a6ca98c771460ad9624e.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/72701e1a9cb864b651f4ae8c4001c600d383114bcb6911ecfb4e3440098cd8d8.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/0d2edfe9238c0c79ecc059ed609947b7a495b587cc727cf2cee035c1caab6543.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/89d61f3d1cec278907f01d266739a454b563c1b0b9efb689c948499b80c149e9.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/b6497a97eeffd8386011ea333e0b9957a013c36086807d3b865395d2776c86ca.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/fb1c8edf8cdad0b36357feed83bb75abe0079106932199edfc6bd7d21220a49e.json"
[TRACE 09:13:39.670] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/478493b15da0aa7cc92da459aab7ef8be07b63ee3d810c89ee2c46d6300449ea.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/edcee6eb1dcf90a5e88c3013f479e5ed5ae15233a71816f3e70e0e144b0e3ee6.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/eea8d574a0ce1dbd290dc8aa69831a8b427e196c05096083acaec671fbea05a7.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/679f48d81e1aecf16fda0bd23083ba8f32b49a3b337c6d11bc319e19f6196fe6.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/7ea3e14a721979677196c52af92d9d17ce621c7711f84a3b0aa2011e425bc69b.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/4ba3320afa5d724f22d4e2c8b8d73d347de99e4279695299a266343eb421cc31.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/7b5c8162a5fa13329be1e47a070fb78c72cc9453324201095225600499f034c4.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/062ad90b5d1dde1687c42170c1b1babdaf844a6e35ecd58fd694b0b6b895c41d.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/09a082c94100033e745da2d95be3e549a88e6482e7591c3db844b8530babd5a9.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/49bbd234be43fe05437afd7715fccf0bef3c9061c56b1b24e61050a33ee82c5b.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/14dc905633fe8b0de7b77e09eea05cf8e4c728ff53081f454230f5b7d2fe5917.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/5e18612254f8b54852af47d0f988e72850d726c2af0fb597be0e43e75e23406b.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/94c54d12ab9c8fa22fd9e987c034c85b46ec3b950585954bcb29ff9b17b382e9.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/85f23e1eff0480e29cfba6e4ad7b4764fab1add0efca96806fd51320610c35d6.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/8049fa4326238791f19dee14204703b2748aed43e6be46895c91d3bb74165ed9.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/d93e80c5356c53bde3dbf590d9a90e5149add7f53fa06ab60dbbd5e2c365a454.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/90909b16cbb4642335624cc7ed69b61a98dc56a7e088d241f505f9c1a0bb9c62.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/6d632a7acd33e3998d46b4250a45ad54fe0c78fc576ca27f17010c0d872084cf.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/186cf27c21b711b7a3c3cd9b70c284822b4063e72cc683b814a107720189daa5.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/b44b29d1b60635cb12fb2de3225f42614820ac1bf09ea3286e0f208ebc547bb8.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/979cd0da0b3954fff424dbce02f69dd83e8d64b65c187b831d3393fc8909b25e.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/e3f0b7397326cc1d12d489d6aa3ec12d48353494ef0e8ad643a1b77ba1c5b7fe.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/6e5f6afd0b8b565bff8e60f709ff155afb9281c7fb93ed133d6da5137b6d41f5.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/a702167bc581f9a7654abc3cd2f37ab95f6182251c9fd1dfa10555d9f8d7c8f2.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/b4806fd52f24bfdc88c0c5ea7603201a8b690598095084e203068d6325264468.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/9e2bf5b54a409e4b70e276175a829e84f0107602799f31812552e7bdc6c68e14.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/cc8086006ba47d55e477943e706f893d0b452f9e6d7a93f71209ce2f1c751069.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/81ffb39ea94bf4310506bbd28f94d01be97b70be9043f3194d93ae9bdcd63eaa.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/4a460452c4efecf76294413168392b2b9f86f957d056f57687b8f2b66b46168f.json"
[TRACE 09:13:39.671] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/899bc18d1c38c354d6dd32bbcb239dc515cbb1244e443e20ad2337b0f18c2db3.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/ef039807131b41b1b6da949952932e6308192f959af9f21bb55a05bc70686e20.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/d735021dfd069b77cd3892482d02bfc9f28f09391d6d79db7e4a78644248dace.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/563cf67627a0f5cb84185736121a3f16ad86a5022623d936ccd8f69a653ca327.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/e8fb8bb58a61ec5842e9ca0e5c3063e07b6a70658c38314d101786b43a8e2bc5.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/437f8f38d65dd3d045838875f3304f35fa8129c6622b1186afd37b21775c8eba.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/47e0a4869a6d4462e72c1791608f75c1147ec4f8927b9372cfa1d90acc145c11.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/4278cab9f6efefb4685d95db1ea6d445c0863cceae11834d3cad14ff078ad720.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/33dfd593e7e4996ce47d25cdf04b9065501d3c3a599ece467c24d36a4a79f29d.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/c4e7680f5f96aa9923cb73ee269f9c1dee633ebfecaf2f83d52b4a6bd7edfaa7.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/b87fa2b544b8f899915d3902aff1e35139d333738b30665531fa352dca1aa253.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/099c68be134c9245936fd478c65f320eae5cf4e001e7d65a580b9078eec1918f.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/cf006d5d3b4ffea8b0617a4ac106a7f21f06a8b05a026c5f8dff918cc14a0d39.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/45c518ed3d99d3af6db8ac3d94ad8649e802c2507a5c4532264e96638eeb48f4.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/126ec6295ef84da6e70df0f8d3571960cbe86e12a6b69810c11e5dc3cbfe1bae.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/9a01788b58d8385b221bbf429a3c7485e9db9a4110137ae29d81ba5232ba2b8b.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/6fef1f30ad818e7b443f888129db25ca2845b54d51e778b4fe304d08ab37fa8a.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/7df288977cebe9b1393ddd8c1956ec9edd5f075f3a6374958f1716a774ea6a82.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/66ab7f8750a8cf6b4a8aed07bf559d6c746ca65baf4249985555495e4c4d7344.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/fb7c039b92ae7b74ce86a9633ac49748de99f47a4977dcdb4bd173a9a0520246.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/6049b22dbe0bd478fc6d0ab2d42ccd6d459e875c4fe82a44ae4b8fbddcfc7136.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/174b08b1e125b39d9d87bc3f1ca5714ded31d5d8e27a2d19194a85ba00e333fd.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/3254ca5ed22974681d84845c78331bc2dd988b94ee1aba4b0981a7f41477c33b.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/872f6f33d33d5d3ea2e7ffe623a55a1fe83586b1a4276875bbe8bcdb3a6cfdde.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/a65962377fd047e7dbdf2a66a79632bc38020eb35b1d63c00c6e1cdf924e44e3.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/65c953b41725cc3dfc8174df99a3382f7e67254be1e8598e87ede9e39493a63a.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/69521185f06cee5dc0569bc7907b3cf9075dbd31ca3a6fd965d996bef2fb194a.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/6e498f2d607a6b76f4e1a8613ea3069ecbfa429655b83bb37a3c5d1489d61338.json"
[TRACE 09:13:39.672] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/8b1bcb263d8992a60b28cdfac516eee2f4952f3ab459d0fd2128e69e8022b468.json"
[TRACE 09:13:39.673] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/ea7b16818c7b0ada16136b87f7d667663c9c5f22794beeea79eecb7b3d4c8570.json"
[TRACE 09:13:39.673] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/7f48df87f79f3fece1de1259a6fa507b8aa60369418f8007a7bc878cd07c7193.json"
[TRACE 09:13:39.673] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/0760513f61b9e1a70b49b1b9440c5d7b91c75c8d150c54a3535bbca55078feb0.json"
[TRACE 09:13:39.673] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/bd124a2067728d2887837174053c3ce70736a5d37475fae1a28c0bfc23a4f9b4.json"
[TRACE 09:13:39.673] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/79d327a8c0b19272df010da071b333b707072fd7a56d53fd828a25d76422e861.json"
[TRACE 09:13:39.673] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/0960f2acde12cb032098ba22dccb18d2a4ffbfa16d59b478bc710aeeaf2cdca6.json"
[TRACE 09:13:39.673] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/b408c5867c429c789197a89d529e0178bb1720327057de019bd6f944833860c6.json"
[TRACE 09:13:39.678] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/2e390cf4b805ae84b9fcc50ce3e4a4fe101629e87b64130fb48e0148a019119e.json"
[TRACE 09:13:39.678] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/11ce93507c2126fbf0c67c102b8c4d7ec1b02fc0eb04593123c955b3ea752cb7.json"
[TRACE 09:13:39.678] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/5c668514258ea15c7966fade65c200565396ca364b9875b49c038df8056a2236.json"
[TRACE 09:13:39.678] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/b5da8ec8921e85e8a2ce4f5420bd73afce7f978649151e07f2315fc4df418411.json"
[TRACE 09:13:39.678] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/092416d7b40394d1f94cf4b3a3782d632ace026a91ba7a0df0988637dc0c8486.json"
[TRACE 09:13:39.678] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/1dc75b43b3d67b6d15ae4ed776f7f53785152dfb137c0d8d339fcc8ec50a07ec.json"
[TRACE 09:13:39.679] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/da2e4703efbba1420555121de30a0d4b0a03f0ebb1d123caf358c971b171f374.json"
[TRACE 09:13:39.679] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/1b3f2440b210d601098263900aa7d10d647467b0e08485c2d74847fdc1a7610b.json"
[TRACE 09:13:39.679] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/88bc0b3c8fefb489d44ff646cebc0c56733141874eb790a2b0bb3b33be8d9af9.json"
[TRACE 09:13:39.679] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/e04a4c5a714dd4a95051e03e228c33da4139a0d7c86ed970685e25603f524411.json"
[TRACE 09:13:39.679] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/aef7580aa32efcf95cd336fd7ba30c4fdf51736b69ce1d8e993910de5a47c901.json"
[TRACE 09:13:39.679] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/d3f7ba0e42e8dde1a37b581312800ca396ae360f924e3927b3bc22e4f464331c.json"
[TRACE 09:13:39.679] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/36a9cd2c5abd8bc64589e403f7486f8a1d4c8f1c8872b43ad238d8874830027c.json"
[TRACE 09:13:39.680] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/2a4bf3fdb596a4bcdc4f79abc6bf0814d724d1a7dd4cec5de66f0ad44e249d74.json"
[TRACE 09:13:39.681] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/bc96add91020ced36687789d8896a7f65753fcb07cbdf3c222354d2a318949fc.json"
[TRACE 09:13:39.681] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/e6ecc07585570bfb1c45924857953e92c419f5c7913b6325ce49efcd2208753b.json"
[TRACE 09:13:39.681] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/42af4383f95c080851ecf338f10905110bbb63fedfa3589d8f7bf454e7b08da3.json"
[TRACE 09:13:39.681] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/5fb293106d93251228bc9feb5213f7261b2daca65aaa775c52dfcabf6dbf6311.json"
[TRACE 09:13:39.682] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/68b7860a7e3327f4cd0810becc100a4d1bc7cda2d5bf641ce2bdde1eb795b109.json"
[TRACE 09:13:39.682] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/14fd3d84d59776c037ae97a8e954993af63d91cda9e2e4f75999e00b421f4b00.json"
[TRACE 09:13:39.682] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/085431d6632936364396af5a9bbf7afe362c2d52f9f57b39f7c31e633bb53ca8.json"
[TRACE 09:13:39.686] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/51fa1e90848de8d4b25294dd476d9042e78fb2615511fac1ca2a57ce7482fa90.json"
[TRACE 09:13:39.687] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/12e2fbe1c811c98d0c5983ea597db82e3ccd9fdeaf0077310668063fe8b50692.json"
[TRACE 09:13:39.687] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/46b6aab31b9942fec3448563a8d9f5d989757faae683bb7b78b99eb28385f889.json"
[TRACE 09:13:39.687] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/5a020b9908c2a059015ad75c97d633c9c8009e741e871569a5f3d782a07c1e91.json"
[TRACE 09:13:39.688] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/d8865e14d4ea7826fba8001d3398bfe6390d4d1f1cf9b6835eb452d671e81dfc.json"
[TRACE 09:13:39.688] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/8ed2c5f21dc6c1f240c71a7d64653133485f200e58dbf196132551d8e13dd9ae.json"
[TRACE 09:13:39.688] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/f90b524d1e9723577caafcc67c7eb3a436445d1303a869f94e01fe32fb91c4a6.json"
[TRACE 09:13:39.688] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/5f84976dac6087eec83b161f0d59c61db6d30495319e57c965fc3e88c6b40c35.json"
[TRACE 09:13:39.688] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/725034a22bf611110cdf6bc4daabd391c71198584941a3b3b3954b221e38f840.json"
[TRACE 09:13:39.688] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/3d6fb6c5815c308cf6879e89d8156b45fd130e8459acd492ab9453067c9d51e7.json"
[TRACE 09:13:39.688] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/56a05c6d4aab3fd8c06c5d8e954ca3e59d26444bb976123ff684b6b0ad354386.json"
[TRACE 09:13:39.688] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/b50db0217e9156fc98cc5e1bbe5ffd0d25ae2ea8d32ecbfbb817aa75252b756a.json"
[TRACE 09:13:39.689] starbase_utils::fs  Reading file metadata  file="/reporoot/.moon/cache/hashes/cd8b81aaafc6009b8f2f5d2fd2d459279c21ad1251961aad417e4175c6f1acb1.json"
▪▪▪▪ @myscope/directlyaffectedlib:release (3f0c0669)
RUNNING THE RELEASE TASK
▪▪▪▪ @myscope/directlyaffectedlib:release (9ms, 3f0c0669)

Tasks: 1 completed
 Time: 293ms

[TRACE 09:13:39.689] starbase_utils::fs  Removing stale contents from directory  dir="/reporoot/.moon/cache/outputs"
[TRACE 09:13:39.689] starbase_utils::fs  Reading directory  dir="/reporoot/.moon/cache/outputs"
[DEBUG 09:13:39.691] moon_cache::cache_engine  Deleted 0 artifacts and saved 0 bytes 
[TRACE 09:13:39.692] starbase::app  Running shutdown phase 
[TRACE 09:13:39.692] moon_console::console  Closing console and flushing buffered output 
[TRACE 09:13:39.692] moon_console::buffer  Closing stderr stream 
[TRACE 09:13:39.693] moon_console::buffer  Closing stdout stream 

@narwold
Copy link
Author

narwold commented Sep 18, 2024

Side note: I was going off of #1588 (comment) that indicated that --affected does not take into consideration dependents, but I was mainly asking if there's some other simple way to accomplish this, especially given that query seems to have the right logic. Probably should have posted there and not opened a dupe now that I think about it.

@milesj
Copy link
Collaborator

milesj commented Oct 7, 2024

This is now supported in v1.29. https://moonrepo.dev/blog/moon-v1.29#new-affected-projects-tracker

@milesj milesj closed this as completed Oct 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Development

No branches or pull requests

2 participants