From 90e01c1d0bae351e4eb5331ea8dd02caf93f78a2 Mon Sep 17 00:00:00 2001 From: John Muchovej Date: Tue, 27 Aug 2024 16:33:20 -0400 Subject: [PATCH] fix(templates): update devcontainer refs in templates! Signed-off-by: John Muchovej --- templates/src/latex/.devcontainer.json | 2 +- templates/src/typst/.devcontainer.json | 64 +++++++++---------- .../src/typst/devcontainer-template.json | 2 +- 3 files changed, 34 insertions(+), 34 deletions(-) diff --git a/templates/src/latex/.devcontainer.json b/templates/src/latex/.devcontainer.json index 49141e0..f86fda3 100644 --- a/templates/src/latex/.devcontainer.json +++ b/templates/src/latex/.devcontainer.json @@ -1,5 +1,5 @@ { - "image": "ghcr.io/jmuchovej/latex-devcontainer:${templateOption:texlive}", + "image": "ghcr.io/jmuchovej/devcontainers/latex:${templateOption:texlive}", "name": "LaTeX", // "workspaceFolder": "/workspace", "customizations": { diff --git a/templates/src/typst/.devcontainer.json b/templates/src/typst/.devcontainer.json index 8f4bd41..750b9c2 100644 --- a/templates/src/typst/.devcontainer.json +++ b/templates/src/typst/.devcontainer.json @@ -1,34 +1,34 @@ { - "image": "ghcr.io/jmuchovej/latex-devcontainer:${templateOption:typst}", - "name": "Typst", - // "workspaceFolder": "/workspace", - "customizations": { - "vscode": { - "extensions": [ - // Typst LSP and renderer. - "myriad-dreamin.tinymist", - // Useful extensions for dev experience - "shardulm94.trailing-spaces", // Highlights straight whitespace - "stkb.rewrap" // Enables word-wrap on comments - ], - "settings": { - "files.eol": "\n", - "editor.formatOnSave": true, - "[typst]": { - "editor.formatOnSave": true - }, - "tinymist.formatterMode": "typstyle", - "files.associations": { - "*.typ": "typst" - }, - } + "image": "ghcr.io/jmuchovej/devcontainers/typst:${templateOption:typst}", + "name": "Typst", + // "workspaceFolder": "/workspace", + "customizations": { + "vscode": { + "extensions": [ + // Typst LSP and renderer. + "myriad-dreamin.tinymist", + // Useful extensions for dev experience + "shardulm94.trailing-spaces", // Highlights straight whitespace + "stkb.rewrap" // Enables word-wrap on comments + ], + "settings": { + "files.eol": "\n", + "editor.formatOnSave": true, + "[typst]": { + "editor.formatOnSave": true + }, + "tinymist.formatterMode": "typstyle", + "files.associations": { + "*.typ": "typst" + }, } - }, - "features": { - "ghcr.io/devcontainers/features/common-utils": { - "installZsh": true, - "username": "vscode", - "upgradePackages": true - } - }, - } \ No newline at end of file + } + }, + "features": { + "ghcr.io/devcontainers/features/common-utils": { + "installZsh": true, + "username": "vscode", + "upgradePackages": true + } + }, +} \ No newline at end of file diff --git a/templates/src/typst/devcontainer-template.json b/templates/src/typst/devcontainer-template.json index c9855a9..14d46fa 100644 --- a/templates/src/typst/devcontainer-template.json +++ b/templates/src/typst/devcontainer-template.json @@ -12,7 +12,7 @@ "texlive": { "type": "string", "description": "Which version of Typst?", - "enum": ["0.10.0", "0.11.0", "0.11.1", "latest"], + "enum": ["0.11.0", "0.11.1", "latest"], "default": "latest" } }