Skip to content

Commit

Permalink
fix(stylelint): remove console.log from stylelint preprocessor (#969)
Browse files Browse the repository at this point in the history
I noticed that our stylelint runs are logging all of our styles. I've
traced this down to this console.log call.

From what I can tell, it looks like this was added by mistake in
#876
  • Loading branch information
lencioni committed May 13, 2022
1 parent fd9da71 commit 1ae913b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/stylelint/src/preprocessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,6 @@ function preprocessor() {
cache[filename] = replacements;
offsets[filename] = offsets[filename]?.reverse();

console.log(cssText);

return cssText + '\n';
},
result(result: LintResult, filename: string) {
Expand Down

0 comments on commit 1ae913b

Please sign in to comment.