Skip to content

Commit

Permalink
docs(DEVELOPER)
Browse files Browse the repository at this point in the history
  • Loading branch information
Badisi committed Jul 11, 2024
1 parent 5ea562b commit faf3efd
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions DEVELOPER.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,30 +24,27 @@ You can test the library while developing it, as follow:
1. Start the testing application

```sh
cd <project_path>/tests-app
npm run start
npm run start -w projects/tests-app
```

2. Make any modifications

* to the **library**: in `projects/library/src/`
* to the **testing application**: in `projects/tests-app/src/`
* to the **tests**: in `projects/tests-e2e/harness.e2e.ts`
* to the **library**: under `./projects/library/src/`
* to the **testing application**: under `./projects/tests-app/src/`
* to the **tests**: in `./projects/tests-e2e/harness.e2e.ts`

3. Run the tests

```sh
cd <project_path>/tests-e2e
npm run start
npm run start -w projects/tests-e2e
```

## Building the library

The library will be built in the `./dist` directory.

```sh
cd <project_path>/library
npm run build
npm run build -w projects/library
```

## Publishing to NPM repository
Expand Down

0 comments on commit faf3efd

Please sign in to comment.