Skip to content

Commit

Permalink
fix(scripts): Fixes scripts by defining prepare plugins.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryasmi committed Feb 21, 2018
1 parent 7a9176b commit 2ca0d78
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions scripts/private-circleci.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ release({
"condition-circle",
"@semantic-release/github"
],
"prepare": [],
"publish": [
"@semantic-release/github"
]
Expand Down
1 change: 1 addition & 0 deletions scripts/private-travisci.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ release({
"@semantic-release/condition-travis",
"@semantic-release/github"
],
"prepare": [],
"publish": [
"@semantic-release/github"
]
Expand Down
3 changes: 3 additions & 0 deletions scripts/public-circleci-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ release({
"@semantic-release/github",
"@semantic-release/npm"
],
"prepare": [
"@semantic-release/npm"
],
"publish": [
"@semantic-release/github",
"@semantic-release/npm",
Expand Down
3 changes: 3 additions & 0 deletions scripts/public-circleci-lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ release({
"@semantic-release/github",
"@semantic-release/npm"
],
"prepare": [
"@semantic-release/npm"
],
"publish": [
"@semantic-release/github",
"@semantic-release/npm"
Expand Down
3 changes: 3 additions & 0 deletions scripts/public-travisci-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ release({
"@semantic-release/github",
"@semantic-release/npm"
],
"prepare": [
"@semantic-release/npm"
],
"publish": [
"@semantic-release/github",
"@semantic-release/npm",
Expand Down
3 changes: 3 additions & 0 deletions scripts/public-travisci-lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ release({
"@semantic-release/github",
"@semantic-release/npm"
],
"prepare": [
"@semantic-release/npm"
],
"publish": [
"@semantic-release/github",
"@semantic-release/npm"
Expand Down

0 comments on commit 2ca0d78

Please sign in to comment.