improve test compilation

This commit is contained in:
2016-09-29 00:19:46 +02:00
parent c91ff6ef4a
commit d536e6aa8c
11 changed files with 4 additions and 62 deletions

18
docs/install.md Normal file
View File

@@ -0,0 +1,18 @@
# Install npmts
First install npmts globally, then install the npmts-g locally.
> **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.
```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)"
}
```