Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
cscheid committed Jan 28, 2025
1 parent ce0bbd2 commit 1d9eb7c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion src/core/cache/cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ class ProjectCacheImpl {
join(this.projectScratchDir, "project-cache", hash),
value,
);
console.log("Adding to cache", key, hash);
const result = await this.index.set(key, {
hash,
type: "string",
Expand Down
7 changes: 1 addition & 6 deletions src/core/sass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -382,12 +382,7 @@ export async function compileWithCache(
}
try {
const result = await memoizedGetVarsBlock(project, input);
console.log("<<<<");
console.log(input);
console.log("----");
console.log(result);
console.log(">>>>");
return input + result;
return input + "\n" + result;
} catch (e) {
console.warn("Error adding css vars block", e);
console.warn(
Expand Down

0 comments on commit 1d9eb7c

Please sign in to comment.