We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58d74a5 commit bd029e0Copy full SHA for bd029e0
bin/index.js
@@ -54,7 +54,10 @@ const installSemanticRelease = () => {
54
const installReleaseRc = (destinationPath) => {
55
return new Promise((resolve, reject) => {
56
console.log(chalk`Creating {blue.bold .releaserc.js} file ...`)
57
- const destinationReleasercPath = path.join(destinationPath, "/releaserc.js")
+ const destinationReleasercPath = path.join(
58
+ destinationPath,
59
+ "/.releaserc.js"
60
+ )
61
const content = getReleaseRc()
62
try {
63
fs.writeFileSync(destinationReleasercPath, content)
0 commit comments