Skip to content

Commit

Permalink
refactor: Added release scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
oyedejioyewole committed Dec 28, 2023
1 parent ecd51ec commit d2eb272
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
"playground:generate": "pnpm --filter playground generate",
"prepack": "nuxt-module-build build",
"prepare": "nuxt-module-build build --stub",
"release": "pnpm lint && pnpm prepack && changelogen --release && cp CHANGELOG.md docs/content/release-notes.md && git push --follow-tags"
"release:major": "pnpm lint && pnpm prepack && changelogen --release --major --output docs/content/release-notes.md && git push --follow-tags",
"release:minor": "pnpm lint && pnpm prepack && changelogen --release --minor --output docs/content/release-notes.md && git push --follow-tags",
"release:patch": "pnpm lint && pnpm prepack && changelogen --release --patch --output docs/content/release-notes.md && git push --follow-tags"
},
"dependencies": {
"@nuxt/kit": "^3.9.0",
Expand All @@ -43,4 +45,4 @@
"eslint": "^8.56.0",
"nuxt": "^3.9.0"
}
}
}

0 comments on commit d2eb272

Please sign in to comment.