release-it 16.1.4 → 16.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -337,7 +337,9 @@ class GitHub extends Release {
337
337
  if (isCI) {
338
338
  this.setContext({ isReleased: true, releaseUrl: url });
339
339
  } else {
340
- await open(url);
340
+ const isWindows = process.platform === 'win32';
341
+ if (isWindows) this.log.info(`Opening ${url}`);
342
+ await open(url, { wait: isWindows });
341
343
  this.setContext({ isReleased: true, releaseUrl: this.getReleaseUrlFallback(tagName) });
342
344
  }
343
345
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "release-it",
3
- "version": "16.1.4",
3
+ "version": "16.1.5",
4
4
  "description": "Generic CLI tool to automate versioning and package publishing-related tasks.",
5
5
  "keywords": [
6
6
  "build",