From 5be3f82c27483442f2f3674ab11c70cb5dc30145 Mon Sep 17 00:00:00 2001 From: FernandoAscencio Date: Mon, 13 Mar 2023 12:09:01 -0400 Subject: [PATCH] composing-applications: `next` changed to `latest` This commit closes #403 Signed-Off-By: FernandoAscencio --- src/docs/composing_applications.md | 56 +++++++++++++++--------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/src/docs/composing_applications.md b/src/docs/composing_applications.md index d5537977..d92ab09b 100644 --- a/src/docs/composing_applications.md +++ b/src/docs/composing_applications.md @@ -30,22 +30,22 @@ Create `package.json` in this directory: { "private": true, "dependencies": { - "@theia/callhierarchy": "next", - "@theia/file-search": "next", - "@theia/git": "next", - "@theia/markers": "next", - "@theia/messages": "next", - "@theia/mini-browser": "next", - "@theia/navigator": "next", - "@theia/outline-view": "next", - "@theia/plugin-ext-vscode": "next", - "@theia/preferences": "next", - "@theia/preview": "next", - "@theia/search-in-workspace": "next", - "@theia/terminal": "next" + "@theia/callhierarchy": "latest", + "@theia/file-search": "latest", + "@theia/git": "latest", + "@theia/markers": "latest", + "@theia/messages": "latest", + "@theia/mini-browser": "latest", + "@theia/navigator": "latest", + "@theia/outline-view": "latest", + "@theia/plugin-ext-vscode": "latest", + "@theia/preferences": "latest", + "@theia/preview": "latest", + "@theia/search-in-workspace": "latest", + "@theia/terminal": "latest" }, "devDependencies": { - "@theia/cli": "next" + "@theia/cli": "latest" } } ``` @@ -73,22 +73,22 @@ An example `package.json` may look like the following: { "private": true, "dependencies": { - "@theia/callhierarchy": "next", - "@theia/file-search": "next", - "@theia/git": "next", - "@theia/markers": "next", - "@theia/messages": "next", - "@theia/navigator": "next", - "@theia/outline-view": "next", - "@theia/plugin-ext-vscode": "next", - "@theia/preferences": "next", - "@theia/preview": "next", - "@theia/search-in-workspace": "next", - "@theia/terminal": "next", - "@theia/vsx-registry": "next" + "@theia/callhierarchy": "latest", + "@theia/file-search": "latest", + "@theia/git": "latest", + "@theia/markers": "latest", + "@theia/messages": "latest", + "@theia/navigator": "latest", + "@theia/outline-view": "latest", + "@theia/plugin-ext-vscode": "latest", + "@theia/preferences": "latest", + "@theia/preview": "latest", + "@theia/search-in-workspace": "latest", + "@theia/terminal": "latest", + "@theia/vsx-registry": "latest" }, "devDependencies": { - "@theia/cli": "next" + "@theia/cli": "latest" }, "scripts": { "prepare": "yarn run clean && yarn build && yarn run download:plugins",