We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b474e2b commit 4f0543dCopy full SHA for 4f0543d
packages/cli/src/preprocess.ts
@@ -12,7 +12,7 @@ export const handleEnv = async (argv: Argv) => {
12
process.env.SSG = '1'
13
}
14
if (isDev) {
15
- process.env.GENERATE_SOURCEMAP = clientPrefix ? 'inline-source-map' : 'source-map'
+ process.env.GENERATE_SOURCEMAP = clientPrefix ? 'inline-cheap-module-source-map' : 'cheap-module-source-map'
16
17
if (argv.sourcemap) {
18
process.env.GENERATE_SOURCEMAP = argv.sourcemap
scripts/release.ts
@@ -87,7 +87,9 @@ async function main (): Promise<void> {
87
pkgName
88
]
89
await run('npx', changelogArgs, { cwd: pkgDir })
90
- await runIfNotDry('git', ['tag', tag])
+ await runIfNotDry('git', ['tag', tag]).catch((err) => {
91
+ console.error(err)
92
+ })
93
tags.push(tag)
94
95
0 commit comments