Skip to content

Commit

Permalink
chore: fix contributing docs "npm build" does not work
Browse files Browse the repository at this point in the history
  • Loading branch information
derkoe committed Jul 5, 2022
1 parent 3d01251 commit 601731c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/CONTRIBUTING_DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,15 +126,15 @@ steps.

1. Have [NodeJS](https://nodejs.org) installed
2. In the root project directory run, `npm install`
3. Run `npm build` to build entire project (this may take several minutes)
3. Run `npm run build` to build entire project (this may take several minutes)
4. Startup the demo project: `npm start`
5. To run tests and other project-specific commands see our project [Build Guide](/docs/BUILD.md)

#### Starting the development environment

1. Have [NodeJS](https://nodejs.org) installed
2. In the root project directory run, `npm install`
3. Run `npm build` to build entire project (this may take several minutes)
3. Run `npm run build` to build entire project (this may take several minutes)
4. Run `npm run build:angular:watch` to run the Angular library build in watch mode so you see the changes in real time (keep that one running in isolated terminal instance)
5. Startup the development environment project: `npm start` will start an Angular application that consumes the Clarity Angular Library (keep that one running in isolated terminal instance)

Expand All @@ -149,7 +149,7 @@ files which track our public API surface.
To update the Golden files follow these steps:

1. Make public API change
2. Run `npm build`
2. Run `npm run build`
3. Run `npm run public-api:update` this should fail

### Commits
Expand Down

0 comments on commit 601731c

Please sign in to comment.