Skip to content

Commit 1d9eb7c

Browse files
committed
remove prints
1 parent ce0bbd2 commit 1d9eb7c

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

src/core/cache/cache.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ class ProjectCacheImpl {
9696
join(this.projectScratchDir, "project-cache", hash),
9797
value,
9898
);
99-
console.log("Adding to cache", key, hash);
10099
const result = await this.index.set(key, {
101100
hash,
102101
type: "string",

src/core/sass.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -382,12 +382,7 @@ export async function compileWithCache(
382382
}
383383
try {
384384
const result = await memoizedGetVarsBlock(project, input);
385-
console.log("<<<<");
386-
console.log(input);
387-
console.log("----");
388-
console.log(result);
389-
console.log(">>>>");
390-
return input + result;
385+
return input + "\n" + result;
391386
} catch (e) {
392387
console.warn("Error adding css vars block", e);
393388
console.warn(

0 commit comments

Comments
 (0)