Skip to content

Commit

Permalink
Update npm scripts and add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
petekeller2 committed Feb 14, 2021
1 parent d4ab532 commit ce963cf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

## v1.07 (01/01/2021)
- [Update dependency](https://github.com/petekeller2/grepord/commit/94879f36cd498cf0a9c75650ea07c41a960357bf) - @petekeller2
- [Create npm-publish.yml](https://github.com/petekeller2/grepord/commit/a830b6d7c271ee5da2cc906b9851d0895d844ee0) - @petekeller2
- [Update version number](https://github.com/petekeller2/grepord/commit/0892b98afc99ca7bd40a52958ec266d290720d61) - @petekeller2
- [Update dependencies and tests](https://github.com/petekeller2/grepord/commit/460d8513e04ed54f54f9a3e6c16e794f67867233) - @petekeller2
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "grepord",
"version": "1.8.1",
"version": "1.8.2",
"bin": "./index.js",
"description": "Grep for an ordered list of files",
"private": false,
"main": "index.js",
"scripts": {
"test": "ava --tap | tap-nyan",
"create-release-tag": "PKG_VER=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g');TAG_CMD=\"git tag -a v$(ECHO $PKG_VER | xargs) -m 'Version $PKG_VER'\";eval $TAG_CMD;",
"push-tags": "git push origin --tags",
"release": "npm run create-release-tag | npm run push-tags | gren release"
"new-release-tag": "PKG_VER=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g');TAG_CMD=\"git tag -a v$(ECHO $PKG_VER | xargs) -m 'Version $PKG_VER'\";eval $TAG_CMD;",
"push-tag": "git push origin --tags",
"release": "rm CHANGELOG.md | npm run new-release-tag | npm run push-tag | gren release | gren changelog --generate"
},
"files": [
"index.js",
Expand Down

0 comments on commit ce963cf

Please sign in to comment.