Skip to content

Commit

Permalink
build(fix): add release scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Kollitsch <[email protected]>
  • Loading branch information
davidsneighbour committed Sep 26, 2024
1 parent e086aa9 commit a889122
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@thenewdynamic/gohugo-theme-ananke",
"description": "Ananke: A theme for Hugo Sites",
"version": "2.7.0",
"version": "2.8.0",
"license": "MIT",
"repository": "thenewdynamic/gohugo-theme-ananke",
"author": "Bud Parr (https://github.com/budparr)",
Expand Down Expand Up @@ -31,15 +31,27 @@
"hugo-module",
"gohugo-module"
],
"devDependencies": {
"auto-changelog": "2.5.0",
"dependencies": {
"cssnano": "7.0.6",
"postcss": "8.4.47",
"postcss-preset-env": "10.0.5",
"tachyons": "4.12.0"
},
"devDependencies": {
"@davidsneighbour/release-config": "2024.3.46",
"@davidsneighbour/tools": "2024.3.46"
},
"scripts": {
"deploy": " cd exampleSite; hugo;",
"version": "auto-changelog -p --template keepachangelog --commit-limit 0 && git add CHANGELOG.md"
"release": "wireit",
"release:pre": "wireit"
},
"wireit": {
"release": {
"command": "commit-and-tag-version --sign -a -t \"v\" --releaseCommitMessageFormat \"chore(release): v{{currentTag}}\" -- --no-verify"
},
"release:pre": {
"command": "commit-and-tag-version --sign -a -t \"v\" --releaseCommitMessageFormat \"chore(release): v{{currentTag}}\" -- --no-verify"
}
}
}

0 comments on commit a889122

Please sign in to comment.