npm_run_scripts/runner/
mod.rs

1//! Runner module for nrs.
2//!
3//! Handles script execution with the appropriate package manager.
4
5mod executor;
6
7pub use executor::{
8    execute_script, execute_workspace_script, format_dry_run_command,
9    format_workspace_dry_run_command, run_script, run_script_in_dir, run_scripts,
10    run_scripts_in_dir, run_workspace_script, ExecutionResult, EXIT_CODE_INTERRUPTED,
11};