Skip to content

Commit

Permalink
fmt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Apr 27, 2023
1 parent 0b00af4 commit 3ea74a2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions plugins/sass.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { merge, normalizePath, replaceExtension } from "../core/utils.ts";
import Sass from "../deps/sass.ts";
import { posix, toFileUrl, fromFileUrl } from "../deps/path.ts";
import { fromFileUrl, posix, toFileUrl } from "../deps/path.ts";
import { Page } from "../core/filesystem.ts";
import { prepareAsset, saveAsset } from "./source_maps.ts";
import textLoader from "../core/loaders/text.ts";
Expand Down Expand Up @@ -79,7 +79,9 @@ export default function (userOptions?: Partial<Options>) {
}
}

throw new Error(`File cannot be canonicalized: ${url} (${pathname})`);
throw new Error(
`File cannot be canonicalized: ${url} (${pathname})`,
);
},
async load(url: URL) {
let pathname = normalizePath(fromFileUrl(url));
Expand Down

0 comments on commit 3ea74a2

Please sign in to comment.