-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,17 +19,24 @@ It is primarily for me, but if you find it useful, that's great! | |
|
||
```sh | ||
# Clone the template locally | ||
git clone [email protected]:sebkolind/ts-lib-starter.git ./my-project | ||
git clone [email protected]:sebkolind/ts-lib-starter.git my-project | ||
|
||
# Install dependencies | ||
# Change working directory to your project | ||
cd my-project | ||
npm add | ||
``` | ||
|
||
Now, you can use any of the `npm` commands: | ||
### Configure package | ||
|
||
Now, remember to open the `package.json` file and change the `name` to your libraries name, and the `description` | ||
to something related to your project. | ||
|
||
### Start building | ||
|
||
```sh | ||
# Devlopement | ||
# Install dependencies | ||
npm install | ||
|
||
# Development | ||
npm run dev | ||
|
||
# Run tests | ||
|