Skip to content

Commit

Permalink
Add CHANGELOG.md + offline-github-changelog integration
Browse files Browse the repository at this point in the history
  • Loading branch information
papandreou committed Nov 22, 2020
1 parent 776699b commit 2d1ed24
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .prettierignore
@@ -1,8 +1,11 @@
# Don't fight npm i --save
package.json

/node_modules
/coverage
/site-build
/.nyc_output
/testdata/

# Don't fight npm i --save
/package.json

# Generated
/CHANGELOG.md
4 changes: 4 additions & 0 deletions documentation/index.md
Expand Up @@ -16,6 +16,10 @@ repository: https://github.com/unexpectedjs/unexpected-mitm

Plugin for Unexpected that allows you to mock out http(s) traffic via [mitm](https://github.com/moll/node-mitm) using a declarative syntax.

## Releases

[Changelog](https://github.com/unexpectedjs/unexpected-mitm/blob/master/CHANGELOG.md)

## License

Unexpected-mitm is licensed under a standard 3-clause BSD license -- see the `LICENSE` file for details.
4 changes: 3 additions & 1 deletion package.json
Expand Up @@ -18,7 +18,8 @@
"coverage": "nyc --reporter=lcov --reporter=text --all npm test && echo google-chrome coverage/lcov-report/index.html",
"generate-site": "generate-site --require ./bootstrap-unexpected-markdown.js",
"update-examples": "generate-site --require ./bootstrap-unexpected-markdown.js --update-examples",
"deploy-site": "deploy-site.sh"
"deploy-site": "deploy-site.sh",
"preversion": "offline-github-changelog --next=${npm_package_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"peerDependencies": {
"unexpected": "^10.27.0 || ^11.0.0-3 || ^12.0.0"
Expand All @@ -37,6 +38,7 @@
"express": "^4.16.3",
"mocha": "^8.2.1",
"nyc": "^15.0.0",
"offline-github-changelog": "^1.7.0",
"pem": "^1.13.1",
"prettier": "~2.1.0",
"request": "^2.53.0",
Expand Down

0 comments on commit 2d1ed24

Please sign in to comment.