File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,9 @@ const cwd = process.cwd()
4747 `${ path . join ( nativePackagesDir , platform ) } ` ,
4848 `--access` ,
4949 `public` ,
50- ...( version . includes ( 'canary' ) ? [ '--tag' , 'canary' ] : [ ] ) ,
50+ ...( version . includes ( 'canary' )
51+ ? [ '--tag' , 'canary' ]
52+ : [ '--tag' , 'next-15-4' ] ) ,
5153 ] ,
5254 { stdio : 'inherit' }
5355 )
@@ -105,7 +107,9 @@ const cwd = process.cwd()
105107 `${ path . join ( wasmDir , `pkg-${ wasmTarget } ` ) } ` ,
106108 '--access' ,
107109 'public' ,
108- ...( version . includes ( 'canary' ) ? [ '--tag' , 'canary' ] : [ ] ) ,
110+ ...( version . includes ( 'canary' )
111+ ? [ '--tag' , 'canary' ]
112+ : [ '--tag' , 'next-15-4' ] ) ,
109113 ] ,
110114 { stdio : 'inherit' }
111115 )
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ const cwd = process.cwd()
3434 throw err
3535 }
3636
37- let tag = isCanary ? 'canary' : isReleaseCandidate ? 'rc' : 'latest '
37+ let tag = isCanary ? 'canary' : isReleaseCandidate ? 'rc' : 'next-15-4 '
3838
3939 try {
4040 if ( ! isCanary && ! isReleaseCandidate ) {
You can’t perform that action at this time.
0 commit comments