Skip to content

Commit 918b158

Browse files
authored
Updates to manual publish scripts (#10055)
1 parent ce836ab commit 918b158

File tree

4 files changed

+57
-21
lines changed

4 files changed

+57
-21
lines changed

DEVELOPMENT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ Experimental releases and hot-fixes do not need to be branched off of `dev`. Exp
5555
- Make whatever changes you need and commit them: `git add . && git commit "experimental changes!"`
5656
- Update version numbers and create a release tag: `yarn run version:experimental`
5757
- Push to GitHub: `git push origin --follow-tags`
58-
- Create a new release for the tag on GitHub to trigger the CI workflow that will publish the release to npm
58+
- The CI workflow should automatically trigger from the experimental tag to publish the release to npm

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@
2424
"test:inspect": "node --inspect-brk ./node_modules/.bin/jest",
2525
"changeset": "changeset",
2626
"version": "changeset version",
27+
"publish": "node scripts/publish.js",
2728
"postversion": "node scripts/postversion.mjs",
28-
"version:experimental": "node scripts ./scripts/version experimental",
29+
"version:experimental": "node ./scripts/version experimental",
2930
"watch": "rollup -c -w"
3031
},
3132
"jest": {

scripts/publish.js

+13-12
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,7 @@ function getTaggedVersion() {
2828
* @param {string|number} version
2929
*/
3030
async function ensureBuildVersion(packageName, version) {
31-
let file = path.join(
32-
rootDir,
33-
"build",
34-
"node_modules",
35-
packageName,
36-
"package.json"
37-
);
31+
let file = path.join(rootDir, "packages", packageName, "package.json");
3832
let json = await jsonfile.readFile(file);
3933
invariant(
4034
json.version === version,
@@ -47,7 +41,7 @@ async function ensureBuildVersion(packageName, version) {
4741
* @param {string} tag
4842
*/
4943
function publishBuild(packageName, tag) {
50-
let buildDir = path.join(rootDir, "build", "node_modules", packageName);
44+
let buildDir = path.join(rootDir, "packages", packageName);
5145
console.log();
5246
console.log(` npm publish ${buildDir} --tag ${tag} --access public`);
5347
console.log();
@@ -75,25 +69,32 @@ async function run() {
7569
);
7670

7771
// 2. Determine the appropriate npm tag to use
78-
let tag = semver.prerelease(version) == null ? "latest" : "next";
72+
let tag = version.includes("experimental")
73+
? "experimental"
74+
: semver.prerelease(version) == null
75+
? "latest"
76+
: "pre";
7977

8078
console.log();
8179
console.log(` Publishing version ${version} to npm with tag "${tag}"`);
8280

8381
// 3. Ensure build versions match the release version
82+
if (version.includes("experimental")) {
83+
// FIXME: @remix-run/router is versioned differently and is only handled
84+
// for experimental releases here
85+
await ensureBuildVersion("router", version);
86+
}
8487
await ensureBuildVersion("react-router", version);
8588
await ensureBuildVersion("react-router-dom", version);
8689
await ensureBuildVersion("react-router-dom-v5-compat", version);
8790
await ensureBuildVersion("react-router-native", version);
88-
// FIXME: @remix-run/router is versioned differently and isn't being
89-
// validated here
9091

9192
// 4. Publish to npm
93+
publishBuild("router", tag);
9294
publishBuild("react-router", tag);
9395
publishBuild("react-router-dom", tag);
9496
publishBuild("react-router-dom-v5-compat", tag);
9597
publishBuild("react-router-native", tag);
96-
publishBuild("@remix-run/router", tag);
9798
} catch (error) {
9899
console.log();
99100
console.error(` ${error.message}`);

scripts/version.js

+41-7
Original file line numberDiff line numberDiff line change
@@ -53,33 +53,57 @@ async function run() {
5353
let args = process.argv.slice(2);
5454
let givenVersion = args[0];
5555
let prereleaseId = args[1];
56+
let isExperimental = givenVersion === "experimental";
5657

5758
// 0. Make sure the working directory is clean
5859
ensureCleanWorkingDirectory();
5960

6061
// 1. Get the next version number
62+
let currentRouterVersion = await getPackageVersion("router");
6163
let currentVersion = await getPackageVersion("react-router");
6264
let version = semver.valid(givenVersion);
6365
if (version == null) {
6466
version = getNextVersion(currentVersion, givenVersion, prereleaseId);
6567
}
6668

69+
// We will only bump the router version if this is an experimental
70+
let routerVersion = currentRouterVersion;
71+
6772
// 2. Confirm the next version number
6873
let answer = await prompt(
6974
`Are you sure you want to bump version ${currentVersion} to ${version}? [Yn] `
7075
);
7176

7277
if (answer === false) return 0;
7378

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+
7492
// 3. Update react-router version
7593
await updatePackageConfig("react-router", (config) => {
7694
config.version = version;
95+
if (isExperimental) {
96+
config.dependencies["@remix-run/router"] = routerVersion;
97+
}
7798
});
7899
console.log(chalk.green(` Updated react-router to version ${version}`));
79100

80101
// 4. Update react-router-dom version + react-router dep
81102
await updatePackageConfig("react-router-dom", (config) => {
82103
config.version = version;
104+
if (isExperimental) {
105+
config.dependencies["@remix-run/router"] = routerVersion;
106+
}
83107
config.dependencies["react-router"] = version;
84108
});
85109
console.log(
@@ -111,20 +135,30 @@ async function run() {
111135
if (!stat.isDirectory()) continue;
112136

113137
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+
}
116147
});
117148
}
118149

119150
// 7. Commit and tag
120151
execSync(`git commit --all --message="Version ${version}"`);
121152
execSync(`git tag -a -m "Version ${version}" v${version}`);
122153
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+
}
128162
} catch (error) {
129163
console.log();
130164
console.error(chalk.red(` ${error.message}`));

0 commit comments

Comments
 (0)