Skip to content
This repository was archived by the owner on Jun 16, 2022. It is now read-only.

Commit 8970461

Browse files
committed
add logs
1 parent 1569dbc commit 8970461

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

dist/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ const detector = {
107107
};
108108
function searchForFile(filename) {
109109
return __awaiter(this, void 0, void 0, function* () {
110+
console.log(`searching for ${filename} in ${__dirname}`);
110111
const { stdout } = yield (0, execa_1.default)('find', [
111112
'.',
112113
'-name',

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ const detector = {
1616
}
1717

1818
async function searchForFile (filename:string) {
19+
console.log(`searching for ${filename} in ${__dirname}`)
20+
1921
const { stdout } = await execa('find', [
2022
'.',
2123
'-name',

0 commit comments

Comments
 (0)