Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jb-coquet committed Mar 10, 2022
1 parent 2fcc670 commit c0ef391
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion libs/form-builder/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"publish": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"baseBranch": "master",
"baseBranch": "${baseBranch}",
"access": "public"
}
}
Expand Down
2 changes: 1 addition & 1 deletion libs/form-context/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"publish": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"baseBranch": "master",
"baseBranch": "${baseBranch}",
"access": "public"
}
}
Expand Down
2 changes: 1 addition & 1 deletion libs/form-editor/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"publish": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"baseBranch": "master",
"baseBranch": "${baseBranch}",
"access": "public"
}
}
Expand Down
2 changes: 1 addition & 1 deletion libs/form-redux/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"publish": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"baseBranch": "master",
"baseBranch": "${baseBranch}",
"access": "public"
}
}
Expand Down
6 changes: 2 additions & 4 deletions libs/form-validation-rule-list/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"libs/form-validation-rule-list/**/*.{ts,tsx,js,jsx}"
]
"lintFilePatterns": ["libs/form-validation-rule-list/**/*.{ts,tsx,js,jsx}"]
}
},
"test": {
Expand All @@ -41,7 +39,7 @@
"publish": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"baseBranch": "master",
"baseBranch": "${baseBranch}",
"access": "public"
}
}
Expand Down
4 changes: 2 additions & 2 deletions project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": {
"executor": "@jscutlery/semver:version",
"options": {
"baseBranch": "master",
"baseBranch": "${baseBranch}",
"push": true,
"noVerify": true,
"commitMessageFormat": "release(${projectName}): publish version ${version}",
Expand All @@ -21,7 +21,7 @@
"github": {
"executor": "@jscutlery/semver:github",
"options": {
"target": "master",
"target": "${baseBranch}",
"tag": "${tag}",
"notes": "${notes}"
}
Expand Down

0 comments on commit c0ef391

Please sign in to comment.