Skip to content

Commit 343e49c

Browse files
committed
chore: remove console.log, add tsc scope
1 parent b499715 commit 343e49c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/visitor.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ export function createPxToVwVisitor(userOptions: Partial<Options> = {}) {
4949
}
5050
},
5151
Length(length) {
52-
console.log(length)
5352
if (length.unit === 'px' && !skipCurrentSelector) {
5453
if (length.value > options.minPixelValue) {
5554
return {

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@
1616
"ESNext",
1717
],
1818
"skipLibCheck": true
19-
}
19+
},
20+
"include": ["src/**/*.ts"]
2021
}

0 commit comments

Comments
 (0)