Skip to content

Commit

Permalink
New std version
Browse files Browse the repository at this point in the history
  • Loading branch information
siokas committed Feb 20, 2025
1 parent 20507be commit 36db3d7
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 32 deletions.
62 changes: 33 additions & 29 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
6 changes: 3 additions & 3 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
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,
green,
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";

0 comments on commit 36db3d7

Please sign in to comment.