Skip to content

Commit

Permalink
fix: add git version (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
devdigital authored Jan 10, 2024
1 parent 94d9aea commit c11a9fa
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions packages/config-eslint/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
"version": {
"executor": "@jscutlery/semver:version",
"options": {
"postTargets": ["npm-publish", "git-push", "github-release"]
"postTargets": [
"npm-publish",
"git-version",
"git-push",
"github-release"
]
}
},
"npm-publish": {
Expand All @@ -15,6 +20,9 @@
"access": "public"
}
},
"git-version": {
"command": "git --version"
},
"git-push": {
"command": "git push --atomic --follow-tags"
},
Expand All @@ -24,12 +32,6 @@
"tag": "{tag}",
"notes": "{notes}"
}
},
"echo": {
"executor": "@utilz/nx-yarn-deploy:echo",
"options": {
"textToEcho": "Hello World!!!"
}
}
}
}

0 comments on commit c11a9fa

Please sign in to comment.