diff --git a/docs/stories/development/00-guides/00-getting-started.stories.mdx b/docs/stories/development/00-guides/00-getting-started.stories.mdx index 1c94f1fab9..92a720ff6c 100644 --- a/docs/stories/development/00-guides/00-getting-started.stories.mdx +++ b/docs/stories/development/00-guides/00-getting-started.stories.mdx @@ -50,7 +50,7 @@ If the projects requires translations, then install [\{TRANSLOCO\}](https://ngne Configure project: ```bash -ng add @ngneat/transloco +npx ng add @ngneat/transloco # On an nx workspace nx g @ngneat/transloco:ng-add ``` @@ -64,7 +64,7 @@ Lets install the schematics to configure and add the design system to an Angular Install the library using Angular CLI: ```bash -ng add @baloise/ds-devkit +npx ng add @baloise/ds-devkit # On an nx workspace nx g @baloise/ds-devkit:ng-add ``` diff --git a/docs/stories/development/02-upgrade/upgrade-guide.v16.stories.mdx b/docs/stories/development/02-upgrade/upgrade-guide.v16.stories.mdx index b1b714b3c6..b486ac4870 100644 --- a/docs/stories/development/02-upgrade/upgrade-guide.v16.stories.mdx +++ b/docs/stories/development/02-upgrade/upgrade-guide.v16.stories.mdx @@ -111,7 +111,7 @@ npm add -D -E @baloise/ds-devkit 2. **Angular Schematics Script:** Rename the packages by simply run the following command in your project's root directory: ```bash -ng generate @baloise/ds-devkit:up16 +npx ng generate @baloise/ds-devkit:up16 ``` 3. **Verify the Changes:** Once the script has run, review the changes to ensure everything has been updated correctly. It's a good practice to check the git diff if your project is version-controlled.