Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add postinstall script to readme #65

Merged
merged 2 commits into from
Jan 29, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,28 @@ Alternatively, you can use a TypeSync config file: `.typesyncrc` or a `"typesync
}
```

## Run TypeSync Automatically After Every Install

To run TypeSync and install packages automatically after every package install, use a `postinstall` script to your `package.json`:

```json
{
"scripts": {
"postinstall": "typesync && npm install"
}
}
```

Or, if you use `yarn`:

```json
{
"scripts": {
"postinstall": "typesync && yarn"
}
}
```

# Typings packages

TypeSync will add typings for packages that:
Expand Down