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 e067a2a commit 23b91d2Copy full SHA for 23b91d2
scripts/release.ts
@@ -5,11 +5,11 @@ import { logRecentCommits } from './releaseUtils'
5
release({
6
repo: 'vite-plugin-basic-ssl',
7
packages: ['plugin-basic-ssl'],
8
- getPkgDir: () => '',
+ getPkgDir: () => '.',
9
toTag: (_pkg, version) => `v${version}`,
10
logChangelog: (pkg) => logRecentCommits(pkg),
11
generateChangelog: async (_pkgName) => {
12
console.log(colors.cyan('\nGenerating changelog...'))
13
- await generateChangelog({ getPkgDir: () => '' })
+ await generateChangelog({ getPkgDir: () => '.' })
14
},
15
})
0 commit comments