Skip to content

Commit 65592a9

Browse files
committed
Update release script to use npm
1 parent 049afc6 commit 65592a9

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

scripts/release.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,7 @@ async function release() {
7878
const revertVersion = await updateVersion(nextVersion);
7979

8080
await run(
81-
execa('yarn', [
82-
'npm',
83-
'publish',
84-
'--access',
85-
'public',
86-
'--tag',
87-
versionStage ? 'next' : 'latest',
88-
]),
81+
execa('npm', ['publish', '--access', 'public', '--tag', versionStage ? 'next' : 'latest']),
8982
{
9083
info: 'Publishing the package to npm',
9184
success: 'The package has been published to npm',

0 commit comments

Comments
 (0)