@@ -53,33 +53,57 @@ async function run() {
53
53
let args = process . argv . slice ( 2 ) ;
54
54
let givenVersion = args [ 0 ] ;
55
55
let prereleaseId = args [ 1 ] ;
56
+ let isExperimental = givenVersion === "experimental" ;
56
57
57
58
// 0. Make sure the working directory is clean
58
59
ensureCleanWorkingDirectory ( ) ;
59
60
60
61
// 1. Get the next version number
62
+ let currentRouterVersion = await getPackageVersion ( "router" ) ;
61
63
let currentVersion = await getPackageVersion ( "react-router" ) ;
62
64
let version = semver . valid ( givenVersion ) ;
63
65
if ( version == null ) {
64
66
version = getNextVersion ( currentVersion , givenVersion , prereleaseId ) ;
65
67
}
66
68
69
+ // We will only bump the router version if this is an experimental
70
+ let routerVersion = currentRouterVersion ;
71
+
67
72
// 2. Confirm the next version number
68
73
let answer = await prompt (
69
74
`Are you sure you want to bump version ${ currentVersion } to ${ version } ? [Yn] `
70
75
) ;
71
76
72
77
if ( answer === false ) return 0 ;
73
78
79
+ // We only handle @remix -run/router for experimental since in normal/pre
80
+ // releases it's versioned independently from the rest of the packages
81
+ if ( isExperimental ) {
82
+ routerVersion = version ;
83
+ // 2.5. Update @remix-run/router version
84
+ await updatePackageConfig ( "router" , ( config ) => {
85
+ config . version = routerVersion ;
86
+ } ) ;
87
+ console . log (
88
+ chalk . green ( ` Updated @remix-run/router to version ${ version } ` )
89
+ ) ;
90
+ }
91
+
74
92
// 3. Update react-router version
75
93
await updatePackageConfig ( "react-router" , ( config ) => {
76
94
config . version = version ;
95
+ if ( isExperimental ) {
96
+ config . dependencies [ "@remix-run/router" ] = routerVersion ;
97
+ }
77
98
} ) ;
78
99
console . log ( chalk . green ( ` Updated react-router to version ${ version } ` ) ) ;
79
100
80
101
// 4. Update react-router-dom version + react-router dep
81
102
await updatePackageConfig ( "react-router-dom" , ( config ) => {
82
103
config . version = version ;
104
+ if ( isExperimental ) {
105
+ config . dependencies [ "@remix-run/router" ] = routerVersion ;
106
+ }
83
107
config . dependencies [ "react-router" ] = version ;
84
108
} ) ;
85
109
console . log (
@@ -111,20 +135,30 @@ async function run() {
111
135
if ( ! stat . isDirectory ( ) ) continue ;
112
136
113
137
await updateExamplesPackageConfig ( example , ( config ) => {
114
- config . dependencies [ "react-router" ] = version ;
115
- config . dependencies [ "react-router-dom" ] = version ;
138
+ if ( config . dependencies [ "@remix-run/router" ] ) {
139
+ config . dependencies [ "@remix-run/router" ] = routerVersion ;
140
+ }
141
+ if ( config . dependencies [ "react-router" ] ) {
142
+ config . dependencies [ "react-router" ] = version ;
143
+ }
144
+ if ( config . dependencies [ "react-router-dom" ] ) {
145
+ config . dependencies [ "react-router-dom" ] = version ;
146
+ }
116
147
} ) ;
117
148
}
118
149
119
150
// 7. Commit and tag
120
151
execSync ( `git commit --all --message="Version ${ version } "` ) ;
121
152
execSync ( `git tag -a -m "Version ${ version } " v${ version } ` ) ;
122
153
console . log ( chalk . green ( ` Committed and tagged version ${ version } ` ) ) ;
123
- console . log (
124
- chalk . red (
125
- ` 🚨 @remix-run/router isn't handled by this script, do it manually!`
126
- )
127
- ) ;
154
+
155
+ if ( givenVersion !== "experimental" ) {
156
+ console . log (
157
+ chalk . red (
158
+ ` 🚨 @remix-run/router isn't handled by this script, do it manually!`
159
+ )
160
+ ) ;
161
+ }
128
162
} catch ( error ) {
129
163
console . log ( ) ;
130
164
console . error ( chalk . red ( ` ${ error . message } ` ) ) ;
0 commit comments