Skip to content

Commit

Permalink
chore: add release notes generation (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbender9 authored Mar 6, 2020
1 parent 3956170 commit 71bade1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"main": "index.js",
"scripts": {
"test": "mocha",
"deploy": "npm test && git tag -a v$npm_package_version -m 'Release v$npm_package_version'; git push --tags; npm publish --access public --scope @signalk ."
"deploy": "npm test && npm run release && npm publish --access public --scope @signalk .",
"create-release": "github-create-release --owner signalk --repository signalk-parser-nmea0183",
"release": "git tag -d v$npm_package_version && git tag v$npm_package_version && git push --tags && git push && npm run create-release"
},
"bin": {
"nmea0183-signalk": "./bin/nmea0183-signalk",
Expand All @@ -30,9 +32,10 @@
"split": "^1.0.1"
},
"devDependencies": {
"debug": "^4.0.1",
"@signalk/github-create-release": "^1.2.0",
"chai": "^4.1.2",
"chai-things": "^0.2.0",
"debug": "^4.0.1",
"mocha": "^6.1.3"
},
"repository": {
Expand Down

0 comments on commit 71bade1

Please sign in to comment.