File tree Expand file tree Collapse file tree 10 files changed +11
-11
lines changed
Expand file tree Collapse file tree 10 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @storybooker/aws" ,
3- "version" : " 0.19.3-pre.10 " ,
3+ "version" : " 0.19.3" ,
44 "type" : " module" ,
55 "description" : " StoryBooker Adapter for interacting with AWS services." ,
66 "author" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " @storybooker/azure" ,
3- "version" : " 0.19.3-pre.10 " ,
3+ "version" : " 0.19.3" ,
44 "type" : " module" ,
55 "description" : " StoryBooker Adapter for interacting with Azure services." ,
66 "author" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " storybooker" ,
3- "version" : " 0.19.3-pre.10 " ,
3+ "version" : " 0.19.3" ,
44 "type" : " module" ,
55 "bin" : " ./dist/index.js" ,
66 "description" : " Storybooker CLI for uploading builds and files." ,
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://raw.githubusercontent.com/denoland/deno/main/cli/schemas/config-file.v1.json" ,
33 "name" : " @storybooker/core" ,
4- "version" : " 0.19.3-pre.10 " ,
4+ "version" : " 0.19.3" ,
55 "license" : " MIT" ,
66 "publish" : {
77 "include" : [
Original file line number Diff line number Diff line change 11{
22 "name" : " @storybooker/core" ,
3- "version" : " 0.19.3-pre.10 " ,
3+ "version" : " 0.19.3" ,
44 "type" : " module" ,
55 "description" : " Storybooker platform agnostic router core." ,
66 "author" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " @storybooker/gcp" ,
3- "version" : " 0.19.3-pre.10 " ,
3+ "version" : " 0.19.3" ,
44 "type" : " module" ,
55 "description" : " StoryBooker Adapter for interacting with GCP services." ,
66 "author" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " @storybooker/redis" ,
3- "version" : " 0.19.3-pre.10 " ,
3+ "version" : " 0.19.3" ,
44 "type" : " module" ,
55 "description" : " StoryBooker Adapter for interacting with Redis services." ,
66 "author" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " @storybooker/sql" ,
3- "version" : " 0.19.3-pre.10 " ,
3+ "version" : " 0.19.3" ,
44 "type" : " module" ,
55 "description" : " StoryBooker Adapter for interacting with SQL services." ,
66 "author" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " @storybooker/ui" ,
3- "version" : " 0.19.3-pre.10 " ,
3+ "version" : " 0.19.3" ,
44 "type" : " module" ,
55 "description" : " Basic UI for Storybooker app" ,
66 "author" : {
Original file line number Diff line number Diff line change @@ -89,9 +89,9 @@ if (values.tag) {
8989 console . group ( `Releasing v${ version } ` ) ;
9090 cp . execSync ( `git add -A` , { encoding : "utf8" } ) ;
9191 console . log ( "Committing all changes..." ) ;
92- cp . execSync ( `git commit -m "Release v${ version } "` , { encoding : "utf8" } ) ;
92+ const message = `Release v${ version } \n\n${ values . message } ` ;
93+ cp . execSync ( `git commit -m "${ message } "` , { encoding : "utf8" } ) ;
9394 console . log ( "Tagging version..." ) ;
94- const message = values . message || `Version ${ version } ` ;
9595 cp . execSync ( `git tag "v${ version } " -am "${ message } "` , { encoding : "utf8" } ) ;
9696 console . log ( "Pushing to origin..." ) ;
9797 cp . execSync ( `git push --follow-tags` , { encoding : "utf8" } ) ;
You can’t perform that action at this time.
0 commit comments