From 7e564c9b6a76512b6afcdfeae79525ac3385e9e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20L=2E=20K=2E=20S=C3=B8rensen?= Date: Thu, 1 Aug 2024 10:12:43 +0200 Subject: [PATCH] Update README.md --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 73831aa..a91ab6c 100644 --- a/README.md +++ b/README.md @@ -37,11 +37,10 @@ The `name` should be unique and you should use a namespace (like how I use `@seb ## 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. +Inside the lib folder is a `main.ts` file. This is the entry point, and 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. +`.test.ts` will be run. ```sh