Skip to content

Commit bf08dca

Browse files
committed
fix: releaserc fallback, extra comma
1 parent e62f9e2 commit bf08dca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/cmds/test_cmds/compose.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export const handler = async (argv) => {
109109
// force exit now
110110
if (signal === 'exit') process.exit(code || 0);
111111
} else {
112-
console.log(`\nLocal environment detected.\nTo stop containers write:\n\n${dockerCompose} ${cleanup} --remove-orphans;\n`);
112+
console.log(`\nLocal environment detected.\nTo stop containers write:\n\n${dockerCompose} ${cleanup.join(' ')} --remove-orphans;\n`);
113113
}
114114
}
115115

scripts/setup-semantic-release.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ for (const [scriptName, name, holder] of scripts) {
149149
}
150150
}
151151

152-
await copyConfiguration('.releaserc.json', ['.releaserc.js']);
152+
await copyConfiguration('.releaserc.json', ['.releaserc.js', '.releaserc.cjs', '.releaserc.mjs', '.releaserc']);
153153
await copyConfiguration('.commitlintrc.cjs', ['.commitlintrc.cjs', '.commitlintrc.json', '.commitlintrc.mjs']);
154154

155155
if (!(await hasDir('.husky/_'))) {

0 commit comments

Comments
 (0)