0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-07 23:08:24 -05:00

📎 Remove leftover code

This commit is contained in:
Belén Albeza 2024-07-08 14:39:41 +02:00
parent 35f4a07d27
commit eae19e8252
2 changed files with 0 additions and 13 deletions

View file

@ -105,16 +105,6 @@ export async function compileSassAll(worker) {
);
}
function compare(a, b) {
if (a < b) {
return -1;
} else if (a > b) {
return 1;
} else {
return 0;
}
}
export function concatSass(data) {
const output = [];

View file

@ -1,6 +1,3 @@
import fs from "node:fs/promises";
import ppt from "pretty-time";
import log from "fancy-log";
import * as h from "./_helpers.js";
await h.compileStyles();