tscoverage/docs/install.md

20 lines
482 B
Markdown
Raw Permalink Normal View History

2016-09-03 16:50:09 +00:00
# Install npmts
2017-04-21 17:06:22 +00:00
Get started with TypeScript awesomeness.
2016-08-31 14:10:01 +00:00
> \*_npmts-g_ checks if the global version of npmts suffices the modules requirements.
> If not it installs npmts locally in the right version during npm install.
2016-08-31 14:10:01 +00:00
```sh
npm install npmts -g # installs npmts globally
npm install npmts-g --save-dev # installs npmts-g checking tool as devDependency
```
Then add it to your package.json's script section to trigger a build:
```json
"scripts": {
"test": "(npmts)"
}
```