From 81bb0eb333350915da8bcba4ac4d656351d2e40c Mon Sep 17 00:00:00 2001 From: Aristeidis Bampakos Date: Wed, 16 Feb 2022 11:01:08 +0200 Subject: [PATCH] docs: clarify install of build schematics deps (#45104) PR Close #45104 --- aio/content/guide/schematics-for-libraries.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/schematics-for-libraries.md b/aio/content/guide/schematics-for-libraries.md index 76e78f3ade3..645d9874125 100644 --- a/aio/content/guide/schematics-for-libraries.md +++ b/aio/content/guide/schematics-for-libraries.md @@ -99,8 +99,8 @@ To tell the library how to build the schematics, add a `tsconfig.schematics.json * The `build` script compiles your schematic using the custom `tsconfig.schematics.json` file. * The `postbuild` script copies the schematic files after the `build` script completes. - * Both the `build` and the `postbuild` scripts require dependencies that are found in their parent directory. - They can be installed by running `npm install` prior to running the scripts. + * Both the `build` and the `postbuild` scripts require the `copyfiles` and `typescript` dependencies. + To install them, navigate to their path defined in `devDependencies` and run `npm install` before running the scripts. ## Providing generation support