readme files updated

This commit is contained in:
TechGeorgii 2024-02-13 13:29:38 +07:00
parent 3a1d175c20
commit d74ae7efdc
2 changed files with 33 additions and 0 deletions

View File

@ -14,3 +14,19 @@ using `tsc` and the `/tsconfig.commonjs.json` configuration.
Do not modify the files in this folder. They are deleted on `build-clean`.
To modify this `README.md`, see the `/output/post-build/lib.commonjs`.
Maintainers
-----
To exclude `lib.commmonjs` from being committed to your fork, skip all files from this folder
from the worktree:
First go into this directory
```
cd lib.commmonjs
```
then
```
find . -maxdepth 1 -type d \( ! -name . \) -exec bash -c "cd '{}' && pwd && git ls-files -z ${pwd} | xargs -0 git update-index --skip-worktree" \;
```
https://stackoverflow.com/a/55860969/504082

View File

@ -14,3 +14,20 @@ using `tsc` and the `/tsconfig.esm.json` configuration.
Do not modify the files in this folder. They are deleted on `build-clean`.
To modify this `README.md`, see the `/output/post-build/lib.esm`.
Maintainers
-----
To exclude `lib.esm` from being committed to your fork, skip all files from this folder
from the worktree:
First go into this directory
```
cd lib.esm
```
then
```
find . -maxdepth 1 -type d \( ! -name . \) -exec bash -c "cd '{}' && pwd && git ls-files -z ${pwd} | xargs -0 git update-index --skip-worktree" \;
```
https://stackoverflow.com/a/55860969/504082