Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sebkolind committed Aug 1, 2024
1 parent 998c5ff commit 8a063e3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,14 @@ Open the `package.json` file and change the `name`, `description` and `author` f
The `name` should be unique and you should use a namespace (like how I use `@sebkolind` for my packages),
`author` is you and `description` is a short summary of what your package is about.

### Start building
## Start building

The package is setup with a `lib` folder which contains all your package code.
Inside the lib folder is a `main.ts` file. This is the entry point, meaning that
this will be the place to export code that can be used by consumers of your library.

The folder `__tests__` holds all your unit tests. When you run `npm run test` the files ending with
`.test.ts` will run.

```sh

Expand Down

0 comments on commit 8a063e3

Please sign in to comment.