Skip to content

Commit

Permalink
Update src/core/base-runner.js
Browse files Browse the repository at this point in the history
Co-authored-by: Marcos Cáceres <[email protected]>
  • Loading branch information
sidvishnoi and marcoscaceres authored Dec 19, 2023
1 parent 56f702a commit a2f8d20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/base-runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export async function runAll(plugs) {
const runnables = plugs.filter(p => isRunnableModule(p));
runnables.forEach((plug, i) => {
if (!plug.name) {
console.warn("Plugin lacks name:", plug);
console.warn(`Plugin ${i} lacks name:`, plug);
plug.name = `unamed-plugin-${i}`;
}
});
Expand Down

0 comments on commit a2f8d20

Please sign in to comment.