Skip to content

Commit

Permalink
updated new release script
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed May 27, 2020
1 parent 77bd80a commit ef9e3ac
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .cfformat.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@
"function_call.multiline.leading_comma.padding": true,
"function_call.casing.builtin": "cfdocs",
"function_call.casing.userdefined": "camel",
"function_call.multiline.element_count": 3,
"function_call.multiline.element_count": 2,
"function_call.multiline.leading_comma": false,
"function_call.multiline.min_length": 40,
"function_declaration.padding": true,
"function_declaration.empty_padding": false,
"function_declaration.multiline.leading_comma": false,
"function_declaration.multiline.leading_comma.padding": true,
"function_declaration.multiline.element_count": 3,
"function_declaration.multiline.element_count": 2,
"function_declaration.multiline.min_length": 40,
"function_declaration.group_to_block_spacing": "compact",
"function_anonymous.empty_padding": false,
"function_anonymous.group_to_block_spacing": "compact",
"function_anonymous.multiline.element_count": 3,
"function_anonymous.multiline.element_count": 2,
"function_anonymous.multiline.leading_comma": false,
"function_anonymous.multiline.leading_comma.padding": true,
"function_anonymous.multiline.min_length": 40,
Expand All @@ -44,6 +44,7 @@
"max_columns": 120,
"metadata.multiline.element_count": 3,
"metadata.multiline.min_length": 40,
"method_call.chain.multiline" : 3,
"newline":"\n",
"property.multiline.element_count": 3,
"property.multiline.min_length": 40,
Expand Down
5 changes: 3 additions & 2 deletions box.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@
"mockdatacfc":"system/modules/mockdatacfc/"
},
"scripts":{
"toMaster":"recipe build/toMaster.boxr",
"release":"recipe build/release.boxr",
"format":"cfformat run system/**/*.cfc,test-harness/**/*.cfc,tests/specs/**/*.cfc,*.cfc --overwrite",
"format:check":"cfformat run system/**/*.cfc,test-harness/**/*.cfc,tests/specs/**/*.cfc,*.cfc --check",
"format:check":"cfformat run system/**/*.cfc,test-harness/**/*.cfc,tests/specs/**/*.cfc,*.cfc --check",
"format:watch":"cfformat watch system/**/*.cfc,test-harness/**/*.cfc,tests/specs/**/*.cfc,*.cfc ./.cfformat.json",
"start:lucee":"server start [email protected]",
"start:2016":"server start [email protected]",
"start:2018":"server start [email protected]"
Expand Down
2 changes: 1 addition & 1 deletion build/toMaster.boxr → build/release.boxr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Check out master
!git checkout -f master
!git pull
!git pull origin master
# Merge development into it
!git merge --no-ff development
# Tag the master repo with the version in box.json
Expand Down

0 comments on commit ef9e3ac

Please sign in to comment.