Skip to content

Commit

Permalink
v 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Marketto committed Jan 25, 2019
1 parent 5a34fb3 commit 055e3be
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,8 @@ mockettaro -r services
This project is licensed under the MIT License - see the [License](/LICENSE) file for details

## Changelog
### 1.4.1
- Sonar config to exclude docs from coverage
### 1.4.0
- Docs
### 1.3.12
Expand Down
3 changes: 2 additions & 1 deletion jsdoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"includePattern": ".+\\.js(doc|x)?$",
"exclude": [
"node_modules",
"doc"
"docs",
"test"
]
},
"opts": {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mockettaro",
"version": "1.4.0",
"version": "1.4.1",
"description": "Node Rest Mock Server",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sonar.projectVersion=1.4.0
sonar.projectVersion=1.4.1
sonar.sourceEncoding=UTF-8
sonar.sources=./
sonar.exclusions=**/node_modules/**,**/examples/**,**/test/**,**/coverage/**
sonar.exclusions=**/node_modules/**,**/examples/**,**/test/**,**/coverage/**,**/docs/**
sonar.projectName=mockettaro
sonar.projectDescription=Node Rest Mock Server
sonar.tests=test
Expand Down

0 comments on commit 055e3be

Please sign in to comment.