Skip to content

Commit c200113

Browse files
author
Raul Melo
authored
remove console logs from configuration and validation files (#47)
1 parent 41c812b commit c200113

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.changeset/brown-waves-occur.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@codeowners-flow/cli': patch
3+
---
4+
5+
Remove console logs

packages/cli/src/config/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ export async function loadUserConfig(
1818
rootDir: string,
1919
configRelativePath?: string,
2020
) {
21-
console.log('configRelativePath', configRelativePath);
2221
try {
2322
const result = configRelativePath
2423
? await explorer.load(path.resolve(rootDir, configRelativePath))

packages/cli/src/validate-codeowners.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export async function validateCodeowners({
1212
config,
1313
}: ValidateCodeOwnersOptions = {}) {
1414
const { ownersPath, ownersContent } = await getCodeOwners(config);
15-
console.log(ownersContent);
1615
try {
1716
const file = await fs.readFile(ownersPath);
1817
const content = file.toString();

0 commit comments

Comments
 (0)