Skip to content

Commit

Permalink
Merge pull request #14 from cdcabrera/development
Browse files Browse the repository at this point in the history
chore(build): package updates, changelog
  • Loading branch information
cdcabrera authored Dec 23, 2018
2 parents 9dc6080 + 3b404aa commit 93f1a27
Show file tree
Hide file tree
Showing 4 changed files with 1,785 additions and 458 deletions.
56 changes: 56 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Change Log

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="2.0.1"></a>
# 2.0.1 (2018-10-14)


### Bug Fixes

* **json response:** 8 array response ([b9d073d](https://github.com/cdcabrera/apidoc-mock/commit/b9d073d))



<a name="2.0.0"></a>
## 2.0.0 (2018-08-13)


### Features

* **delay response:** add ability to delay response time ([48383be](https://github.com/cdcabrera/apidoc-mock/commit/48383be))


### Performance Improvements

* **nodeJs:** upgraded nodeJs and packages ([9e008bc](https://github.com/cdcabrera/apidoc-mock/commit/9e008bc))



<a name="1.0.2"></a>
## 1.0.2 (2018-07-26)


### Maintenance

* **copy format:** minor copy and formatting ([348aad7](https://github.com/cdcabrera/apidoc-mock/commit/348aad7))



<a name="1.0.1"></a>
## 1.0.1 (2018-07-26)


### Bug Fixes

* **forced status:** 5XX response blocked by authorization ([8549097](https://github.com/cdcabrera/apidoc-mock/commit/8549097))



<a name="1.0.0"></a>
## 1.0.0 (2018-07-13)


### Features

* **custom responses:** allow custom response override ([4f3c9eb](https://github.com/cdcabrera/apidoc-mock/commit/4f3c9eb))
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:8-alpine
FROM node:10-alpine

WORKDIR /app

Expand Down
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"test": "eslint ./src/",
"build": "apidoc --parse-parsers apimock=./src/api_mock.js -i ./data -o ./docs",
"build:serve": "npm run build && npm run serve",
"release": "standard-version",
"start": "nodemon --watch data --watch src npm run build:serve",
"start:container": "nodemon --watch data npm run build:serve",
"opts": "apidoc --help"
Expand All @@ -34,20 +35,21 @@
"description": "API documentation with apiDoc."
},
"dependencies": {
"apidoc": "^0.17.6",
"apidoc": "^0.17.7",
"express": "^4.16.4",
"nodemon": "^1.18.4"
"nodemon": "^1.18.9"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.7.0",
"eslint": "^5.11.0",
"eslint-config-esnext": "^4.0.0",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"prettier": "^1.14.3"
"prettier": "^1.15.3",
"standard-version": "^4.4.0"
}
}
Loading

0 comments on commit 93f1a27

Please sign in to comment.