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