From 1b9436714737b94cd42906e9974bc3a36e227df7 Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Thu, 30 Nov 2023 18:19:37 +0100 Subject: [PATCH] ext-scripts: fixed readme for ext-scripts (#13127) Signed-off-by: Christian Schneider --- dev-packages/private-ext-scripts/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-packages/private-ext-scripts/README.md b/dev-packages/private-ext-scripts/README.md index 14fc735424eb6..057b6a45db002 100644 --- a/dev-packages/private-ext-scripts/README.md +++ b/dev-packages/private-ext-scripts/README.md @@ -16,12 +16,12 @@ `theiaext` is a command line tool to run shared npm scripts in Theia packages.\ For instance, if you want add a new `hello` script that prints `Hello World`: -- add a new script to [package.json](./package.json) with the `ext:` prefix. +- add a new script to [./package.json](./package.json) with the `ext:` prefix. ```json { "name": "@theia/ext-scripts", - "scripts": { + "theia-monorepo-scripts": { "ext:hello": "echo 'Hello World'" } }