-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
78aa588
commit 1c083e7
Showing
5 changed files
with
19 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
// Imports | ||
import { expandGlob } from "jsr:@std/fs" | ||
import { basename, dirname, fromFileUrl } from "jsr:@std/path" | ||
import { resolve } from "jsr:@std/path/resolve" | ||
import * as JSONC from "jsr:@std/jsonc" | ||
import type { record } from "jsr:@libs/typing" | ||
import { expandGlob } from "@std/fs" | ||
import { basename, dirname, fromFileUrl, resolve } from "jsr:@std/path" | ||
import * as JSONC from "@std/jsonc" | ||
import type { record } from "@libs/typing" | ||
|
||
// Load global configuration | ||
const root = fromFileUrl(import.meta.resolve("../")) | ||
const global = JSONC.parse(await Deno.readTextFile(resolve(root, "deno.jsonc"))) as Record<string, unknown> | ||
const imports = {} | ||
const imports = { "@std/jsonc": "jsr:@std/[email protected]" } | ||
|
||
// Load local configurations | ||
const packages = [] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
// Imports | ||
import { expandGlob } from "jsr:@std/fs" | ||
import { basename, dirname, fromFileUrl, resolve } from "jsr:@std/path" | ||
import * as JSONC from "jsr:@std/jsonc" | ||
import { DOMParser } from "https://deno.land/x/[email protected]/deno-dom-wasm.ts" | ||
import { expandGlob } from "@std/fs" | ||
import { basename, dirname, fromFileUrl, resolve } from "@std/path" | ||
import * as JSONC from "@std/jsonc" | ||
import { DOMParser } from "@lowlighter/deno-dom/deno-dom-wasm" | ||
import { Logger } from "@libs/logger" | ||
|
||
// Load local configurations | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,6 +66,7 @@ | |
] | ||
}, | ||
"imports": { | ||
"@std/jsonc": "jsr:@std/[email protected]", | ||
"@std/fs": "jsr:@std/[email protected]", | ||
"@std/assert": "jsr:@std/[email protected]", | ||
"@std/semver": "jsr:@std/[email protected]", | ||
|
@@ -82,6 +83,7 @@ | |
"@cliffy/table": "jsr:@cliffy/[email protected]", | ||
"@mdn/browser-compat-data": "npm:@mdn/browser-compat-data@5", | ||
"@deno/emit": "jsr:@deno/[email protected]", | ||
"@lowlighter/deno-dom/deno-dom-wasm": "jsr:@lowlighter/[email protected]/deno-dom-wasm", | ||
"terser": "npm:terser@5", | ||
"browserslist": "npm:browserslist@4", | ||
"css-tree": "npm:css-tree@2", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.