From 1500a5b02c1ce8f378cc4fc5cc27a695ac93761c Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Fri, 7 Jan 2022 04:17:59 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 46b58bd..b556380 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ `ts-ci` is a project starter like [TSDX](https://github.com/formium/tsdx) or [typescript-starter](https://github.com/bitjson/typescript-starter) but (arguably) better because: - It's not a CLI tool, the automation happens with Github Actions. Update your `package.json` version number, push. Voila, your new version is published on NPM. -- It doesn't bundle your library into a single file so users can cherry-pick what they want to import from your lib. +- It doesn't bundle your library into a single file so users can cherry-pick what they want to import from your lib, your modules will be tree shakable. E.g: `import { aSpecificFunction } from "your-module/aSpecificFile"`