Skip to content

Commit

Permalink
Remove source_dir output in node.js #296
Browse files Browse the repository at this point in the history
  • Loading branch information
linev committed Apr 15, 2024
1 parent 27c53af commit ed9082a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions modules/core.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@ if (_src && isStr(_src)) {
const pos = _src.indexOf('modules/core.mjs');
if (pos >= 0) {
source_dir = _src.slice(0, pos);
console.log(`Set jsroot source_dir to ${source_dir}, ${version}`);
if (!nodejs)
console.log(`Set jsroot source_dir to ${source_dir}, ${version}`);
} else {
console.log(`jsroot bundle, ${version}`);
if (!nodejs)
console.log(`jsroot bundle, ${version}`);
internals.ignore_v6 = true;
}
}
Expand Down

0 comments on commit ed9082a

Please sign in to comment.