File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,8 @@ function safeExec(cmd: string, opts = {}) {
55
55
verbose : true ,
56
56
gitCommit : false ,
57
57
stageChanges : false ,
58
- specifier : versionSpecifier ,
58
+ specifier : 'prerelease' ,
59
+ preid : 'canary' ,
59
60
} )
60
61
61
62
// Update version.ts files with the new versions
@@ -114,14 +115,14 @@ function safeExec(cmd: string, opts = {}) {
114
115
const publishResult = await releasePublish ( {
115
116
registry : 'https://registry.npmjs.org/' ,
116
117
access : 'public' ,
117
- tag : 'latest ' ,
118
+ tag : 'canary ' ,
118
119
verbose : true ,
119
120
} )
120
121
121
122
// Publish gotrue-js as legacy mirror of auth-js
122
123
console . log ( '\n📦 Publishing @supabase/gotrue-js (legacy mirror)...' )
123
124
try {
124
- safeExec ( 'npx tsx scripts/publish-gotrue-legacy.ts --tag=latest ' )
125
+ safeExec ( 'npx tsx scripts/publish-gotrue-legacy.ts --tag=canary ' )
125
126
} catch ( error ) {
126
127
console . error ( '❌ Failed to publish gotrue-js legacy package:' , error )
127
128
// Don't fail the entire release if gotrue-js fails
You can’t perform that action at this time.
0 commit comments