Skip to content

Commit

Permalink
refactor: use const for content
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelroses committed Dec 13, 2023
1 parent 95efe1c commit 15743f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/import-styles/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ for await (const entry of stylesheets) {
}

for (let i = 0; i < entries.length; i++) {
let content = await Deno.readTextFile(entries[i].path);
const content = await Deno.readTextFile(entries[i].path);

const {metadata} = usercssMeta.parse(content);

Expand Down

0 comments on commit 15743f4

Please sign in to comment.