Skip to content

Commit db451e8

Browse files
committed
feat: log manifest path
1 parent ec4c892 commit db451e8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

lib/createInlinePluginCreator.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ function createInlinePluginCreator(packages, multiContext) {
3737
const manifest = getManifest(path);
3838

3939
dbg("name=", manifest.name);
40+
dbg("path=", path);
4041
// Loop through localDeps to update dependencies/devDependencies/peerDependencies in manifest.
4142
pkg._localDeps.forEach(d => {
4243
// Get version of dependency.

lib/debug.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ const logger = getLogger({ stdout: process.stdout, stderr: process.stderr });
55
let opts;
66

77
const createDebugger = prefix => (...input) => {
8-
if (get(opts, prefix || "")) {
9-
return logger.log(...input);
10-
}
8+
// if (get(opts, prefix || "")) {
9+
return logger.log(...input);
10+
// }
1111
};
1212

1313
const debug = createDebugger();

0 commit comments

Comments
 (0)