Skip to content

Commit

Permalink
chore: fix foreach wks
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinebigard committed Oct 22, 2024
1 parent bcc22e9 commit 8343595
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .bin/zsh-completion
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#compdef -d mna-tmpl
#compdef -d ij-sirius

_completion() {
local curcontext="$curcontext" state line
typeset -A opt_args
local -a commands=(
"help:'Show help message'"
"bin\:setup:'Installs mna-tmpl binary with zsh completion on system'"
"bin\:setup:'Installs ij-sirius binary with zsh completion on system'"
"init\:env:'Update local env files using values from vault file'"
"release\:app:'Build & Push Docker image releases'"
"release\:interactive:'Interactivelly Build & Push Docker image releases'"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"typecheck": "yarn foreach:parallel run typecheck",
"typecheck:ci": "yarn foreach:ci run typecheck",
"vault:edit": ".bin/product vault:edit",
"foreach:seq": "yarn workspaces foreach -Av --exclude mna",
"foreach:seq": "yarn workspaces foreach -Av --exclude sirius",
"foreach:parallel": "yarn foreach:seq -pi",
"foreach:ci": "yarn foreach:seq -p"
},
Expand Down
6 changes: 5 additions & 1 deletion release.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
module.exports = {
branches: ["main", { name: "hotfix", channel: "hotfix", prerelease: "hotfix" }],
branches: [
"main",
{ name: "hotfix", channel: "hotfix", prerelease: "hotfix" },
{ name: "next", channel: "rc", prerelease: true },
],
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
Expand Down

0 comments on commit 8343595

Please sign in to comment.