@react-router/serve 7.15.1 → 7.16.0

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # `@react-router/serve`
2
2
 
3
+ ## v7.16.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Normalize `assetsBuildDirectory` path separators in `react-router-serve` so Windows-built server artifacts can serve `/assets/*` correctly when run on Linux. ([#14982](https://github.com/remix-run/react-router/pull/14982))
8
+ - Updated dependencies:
9
+ - [`react-router@7.16.0`](https://github.com/remix-run/react-router/releases/tag/react-router@7.16.0)
10
+ - [`@react-router/express@7.16.0`](https://github.com/remix-run/react-router/releases/tag/@react-router/express@7.16.0)
11
+ - [`@react-router/node@7.16.0`](https://github.com/remix-run/react-router/releases/tag/@react-router/node@7.16.0)
12
+
3
13
  ## v7.15.1
4
14
 
5
15
  ### Patch Changes
package/dist/cli.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * @react-router/serve v7.15.1
3
+ * @react-router/serve v7.16.0
4
4
  *
5
5
  * Copyright (c) Remix Software Inc.
6
6
  *
@@ -89,7 +89,7 @@ async function run() {
89
89
  if (isRSCBuild = isRSCServerBuild(buildModule)) {
90
90
  const config = {
91
91
  publicPath: "/",
92
- assetsBuildDirectory: "../client",
92
+ assetsBuildDirectory: import_node_path.default.join("..", "client"),
93
93
  ...buildModule.unstable_reactRouterServeConfig || {}
94
94
  };
95
95
  build = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-router/serve",
3
- "version": "7.15.1",
3
+ "version": "7.16.0",
4
4
  "description": "Production application server for React Router",
5
5
  "bugs": {
6
6
  "url": "https://github.com/remix-run/react-router/issues"
@@ -39,11 +39,11 @@
39
39
  "get-port": "5.1.1",
40
40
  "morgan": "^1.10.1",
41
41
  "source-map-support": "^0.5.21",
42
- "@react-router/express": "7.15.1",
43
- "@react-router/node": "7.15.1"
42
+ "@react-router/express": "7.16.0",
43
+ "@react-router/node": "7.16.0"
44
44
  },
45
45
  "peerDependencies": {
46
- "react-router": "7.15.1"
46
+ "react-router": "7.16.0"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@types/compression": "^1.8.1",