generated from templates/typescript-library
31 lines
435 B
Markdown
31 lines
435 B
Markdown
|
|
Template project for creating new TypeScript library packages
|
|
|
|
---
|
|
|
|
## Get Started
|
|
|
|
### Pull down the code
|
|
|
|
```bash
|
|
git init
|
|
git pull https://gitea.jbrumond.me/templates/typescript-library.git master
|
|
```
|
|
|
|
### Update configuration
|
|
|
|
- In `package.json`, update any fields like `name`, `description`, `repository`, etc.
|
|
- In `.gitea/workflows/publish.yaml`, update `<scope name>` placeholders
|
|
|
|
|
|
|
|
## Building
|
|
|
|
```bash
|
|
npm run tsc
|
|
```
|
|
|
|
|
|
|
|
|