Skip to content

Commit 36e8816

Browse files
committed
build: fix release script
1 parent 7845e32 commit 36e8816

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/release.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,6 @@ async function main() {
378378
'--same-file',
379379
'-p',
380380
'angular',
381-
'-u',
382381
'-r',
383382
changelogExists ? '1' : '0',
384383
'--commit-path',
@@ -387,9 +386,10 @@ async function main() {
387386
...(pkg.name === MAIN_PKG_NAME && IS_MAIN_PKG_AT_ROOT
388387
? [join(pkg.path, 'src'), join(pkg.path, 'package.json')]
389388
: ['.']),
390-
...(pkg.name === MAIN_PKG_NAME && IS_MAIN_PKG_AT_ROOT
391-
? []
392-
: ['--lerna-package', pkg.name]),
389+
// NOTE: this was breaking vue-router
390+
// ...(pkg.name === MAIN_PKG_NAME && IS_MAIN_PKG_AT_ROOT
391+
// ? []
392+
// : ['--lerna-package', pkg.name]),
393393
...(pkg.name === MAIN_PKG_NAME
394394
? []
395395
: ['--tag-prefix', `${pkg.name}@`]),

0 commit comments

Comments
 (0)