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 @@ -49,7 +49,9 @@ const cwd = process.cwd()
4949 `${ path . join ( nativePackagesDir , platform ) } ` ,
5050 `--access` ,
5151 `public` ,
52- ...( version . includes ( 'canary' ) ? [ '--tag' , 'canary' ] : [ ] ) ,
52+ ...( version . includes ( 'canary' )
53+ ? [ '--tag' , 'canary' ]
54+ : [ '--tag' , 'next-15-0-0' ] ) ,
5355 ] ,
5456 { stdio : 'inherit' }
5557 )
@@ -107,7 +109,9 @@ const cwd = process.cwd()
107109 `${ path . join ( wasmDir , `pkg-${ wasmTarget } ` ) } ` ,
108110 '--access' ,
109111 'public' ,
110- ...( version . includes ( 'canary' ) ? [ '--tag' , 'canary' ] : [ ] ) ,
112+ ...( version . includes ( 'canary' )
113+ ? [ '--tag' , 'canary' ]
114+ : [ '--tag' , 'next-15-0-0' ] ) ,
111115 ] ,
112116 { stdio : 'inherit' }
113117 )
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ const cwd = process.cwd()
6161 ? [ '--tag' , 'canary' ]
6262 : isReleaseCandidate
6363 ? [ '--tag' , 'rc' ]
64- : [ ] ) ,
64+ : [ '--tag' , 'next-15-0-0' ] ) ,
6565 ] ,
6666 { stdio : 'pipe' }
6767 )
You can’t perform that action at this time.
0 commit comments