run() — react Function Reference
Architecture documentation for the run() function in confirm-skipped-packages.js from the react codebase.
Entity Profile
Dependency Diagram
graph TD 2dcaec3d_82fc_faf9_76dc_ecd5a0692783["run()"] 3e8a5961_4b2c_b8b9_68ef_162329c426c4["confirm-skipped-packages.js"] 2dcaec3d_82fc_faf9_76dc_ecd5a0692783 -->|defined in| 3e8a5961_4b2c_b8b9_68ef_162329c426c4 style 2dcaec3d_82fc_faf9_76dc_ecd5a0692783 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
scripts/release/publish-commands/confirm-skipped-packages.js lines 9–27
const run = async ({cwd, packages, skipPackages, tags}) => {
if (skipPackages.length === 0) {
return;
}
clear();
console.log(
theme`{spinnerSuccess ✓} The following packages will not be published as part of this release`
);
skipPackages.forEach(packageName => {
console.log(theme`• {package ${packageName}}`);
});
await confirm('Do you want to proceed?');
clear();
};
Domain
Subdomains
Source
Frequently Asked Questions
What does run() do?
run() is a function in the react codebase, defined in scripts/release/publish-commands/confirm-skipped-packages.js.
Where is run() defined?
run() is defined in scripts/release/publish-commands/confirm-skipped-packages.js at line 9.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free