From 3ce5e8fd572c7a799f27c9c92c0f331d9feadf3e Mon Sep 17 00:00:00 2001 From: Brice Carpentier Date: Tue, 18 Mar 2025 11:39:15 +0100 Subject: [PATCH] Fix "features" examples The previous value would trigger ``` 2025-03-17 16:39:23.345Z: {"outcome":"error","message":"ERR: Feature 'ghcr.io/devcontainers-community/features/typescript' could not be processed. You may not have permission to access this Feature, or may not be logged in. If the issue persists, report this to the Feature author.","description":"An error occurred setting up the container."} 2025-03-17 16:39:23.347Z: Error: ERR: Feature 'ghcr.io/devcontainers-community/features/typescript' could not be processed. You may not have permission to access this Feature, or may not be logged in. If the issue persists, report this to the Feature author. ``` --- src/typescript/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/typescript/README.md b/src/typescript/README.md index f4a1921..87fbbf1 100644 --- a/src/typescript/README.md +++ b/src/typescript/README.md @@ -24,7 +24,7 @@ and npm and running `npm install -g typescript`. ```jsonc // devcontainer.json "features": { - "ghcr.io/devcontainers-community/features/typescript": {} + "ghcr.io/devcontainers-community/npm-features/typescript": {} } ``` @@ -35,7 +35,7 @@ You can specify a specific TypeScript version like this: ```jsonc // devcontainer.json "features": { - "ghcr.io/devcontainers-community/features/typescript": { + "ghcr.io/devcontainers-community/npm-features/typescript": { "version": "5.0.0" } }