diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..5297fb4 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "request": "attach", + "name": "Deno", + "type": "node", + "cwd": "${workspaceFolder}", + "env": {}, + } + ] +} \ No newline at end of file diff --git a/deno.json b/deno.json index 000c37a..c1496ea 100644 --- a/deno.json +++ b/deno.json @@ -6,13 +6,12 @@ "./esbuild_types": "./src/esbuild_types.ts" }, "imports": { - "@std/assert": "jsr:@std/assert@0.213", + "@std/assert": "jsr:@std/assert@^1.0.6", "@std/bytes": "jsr:@std/bytes@^1.0.2", - "@std/encoding": "jsr:@std/encoding@0.213", - "@std/encoding/base32": "jsr:@std/encoding@0.213/base32", - "@std/fs": "jsr:@std/fs@0.213", - "@std/jsonc": "jsr:@std/jsonc@0.213", - "@std/path": "jsr:@std/path@0.213", + "@std/encoding": "jsr:@std/encoding@^1.0.5", + "@std/fs": "jsr:@std/fs@^1.0.4", + "@std/jsonc": "jsr:@std/jsonc@^1.0.1", + "@std/path": "jsr:@std/path@^1.0.6", "x/importmap": "./vendor/x/importmap/mod.ts", "x/importmap/_util.ts": "./vendor/x/importmap/_util.ts" },