diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ae2ec7b..f0a0606 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,35 +1,39 @@ { "name": "Deno", "dockerFile": "Dockerfile", - "settings": { - "editor.lineNumbers": "off", - "editor.fontWeight": "400", - "editor.fontSize": 18, - "editor.minimap.enabled": false, - "workbench.statusBar.visible": false, - "explorer.openEditors.visible": 0, - "workbench.activityBar.visible": false, - "editor.tabCompletion": "on", - "jsannotations.enabled": true, - "jsannotations.fontWeight": "500", - "jsannotations.showFirstSpace": true, - "stylelint.enable": true, - "editor.lineHeight": 50, - "editor.scrollBeyondLastLine": false, - "editor.cursorStyle": "line-thin", - "workbench.sideBar.location": "right", - "workbench.iconTheme": "material-icon-theme", - "workbench.colorTheme": "Operator Mono Dark Theme", - "deno.enable": true, - "editor.formatOnSave": true, - "deno.suggest.imports.hosts": { - "https://deno.land": false + "customizations": { + "vscode": { + "settings": { + "editor.lineNumbers": "off", + "editor.fontWeight": "400", + "editor.fontSize": 18, + "editor.minimap.enabled": false, + "workbench.statusBar.visible": false, + "explorer.openEditors.visible": 0, + "workbench.activityBar.visible": false, + "editor.tabCompletion": "on", + "jsannotations.enabled": true, + "jsannotations.fontWeight": "500", + "jsannotations.showFirstSpace": true, + "stylelint.enable": true, + "editor.lineHeight": 50, + "editor.scrollBeyondLastLine": false, + "editor.cursorStyle": "line-thin", + "workbench.sideBar.location": "right", + "workbench.iconTheme": "material-icon-theme", + "workbench.colorTheme": "Operator Mono Dark Theme", + "deno.enable": true, + "editor.formatOnSave": true, + "deno.suggest.imports.hosts": { + "https://deno.land": false + } + }, + "extensions": [ + "denoland.vscode-deno", + "Valiantsin.operatormonodarktheme", + "PKief.material-icon-theme" + ] } }, - "extensions": [ - "denoland.vscode-deno", - "Valiantsin.operatormonodarktheme", - "PKief.material-icon-theme" - ], "remoteUser": "vscode" -} +} \ No newline at end of file diff --git a/deps.ts b/deps.ts index ba82dd6..1c2126f 100644 --- a/deps.ts +++ b/deps.ts @@ -1,5 +1,5 @@ export const test = Deno.test; -export { parse } from "https://deno.land/std@0.210.0/flags/mod.ts"; +export { parse } from "https://deno.land/std@0.224.0/flags/mod.ts"; export { blue, bold, @@ -7,9 +7,9 @@ export { red, reset as resetColor, yellow, -} from "https://deno.land/std@0.210.0/fmt/colors.ts"; +} from "https://deno.land/std@0.224.0/fmt/colors.ts"; export { assert, assertEquals, assertThrows, -} from "https://deno.land/std@0.210.0/testing/asserts.ts"; +} from "https://deno.land/std@0.224.0/testing/asserts.ts";