@react-router/serve 0.0.0-experimental-e2130f538 → 0.0.0-experimental-73e447577
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 +0 -19
- package/dist/cli.js +2 -4
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,5 @@
|
|
|
1
1
|
# `@react-router/serve`
|
|
2
2
|
|
|
3
|
-
## 7.9.3
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- Updated dependencies:
|
|
8
|
-
- `react-router@7.9.3`
|
|
9
|
-
- `@react-router/node@7.9.3`
|
|
10
|
-
- `@react-router/express@7.9.3`
|
|
11
|
-
|
|
12
|
-
## 7.9.2
|
|
13
|
-
|
|
14
|
-
### Patch Changes
|
|
15
|
-
|
|
16
|
-
- disable compression for RSC responses for now ([#14381](https://github.com/remix-run/react-router/pull/14381))
|
|
17
|
-
- Updated dependencies:
|
|
18
|
-
- `react-router@7.9.2`
|
|
19
|
-
- `@react-router/node@7.9.2`
|
|
20
|
-
- `@react-router/express@7.9.2`
|
|
21
|
-
|
|
22
3
|
## 7.9.1
|
|
23
4
|
|
|
24
5
|
### Patch Changes
|
package/dist/cli.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
|
-
* @react-router/serve v0.0.0-experimental-
|
|
3
|
+
* @react-router/serve v0.0.0-experimental-73e447577
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) Remix Software Inc.
|
|
6
6
|
*
|
|
@@ -112,9 +112,7 @@ async function run() {
|
|
|
112
112
|
};
|
|
113
113
|
let app = (0, import_express2.default)();
|
|
114
114
|
app.disable("x-powered-by");
|
|
115
|
-
|
|
116
|
-
app.use((0, import_compression.default)());
|
|
117
|
-
}
|
|
115
|
+
app.use((0, import_compression.default)());
|
|
118
116
|
app.use(
|
|
119
117
|
import_node_path.default.posix.join(build.publicPath, "assets"),
|
|
120
118
|
import_express2.default.static(import_node_path.default.join(build.assetsBuildDirectory, "assets"), {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-router/serve",
|
|
3
|
-
"version": "0.0.0-experimental-
|
|
3
|
+
"version": "0.0.0-experimental-73e447577",
|
|
4
4
|
"description": "Production application server for React Router",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/remix-run/react-router/issues"
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
"get-port": "5.1.1",
|
|
39
39
|
"morgan": "^1.10.0",
|
|
40
40
|
"source-map-support": "^0.5.21",
|
|
41
|
-
"@react-router/express": "0.0.0-experimental-
|
|
42
|
-
"@react-router/node": "0.0.0-experimental-
|
|
41
|
+
"@react-router/express": "0.0.0-experimental-73e447577",
|
|
42
|
+
"@react-router/node": "0.0.0-experimental-73e447577"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"react-router": "0.0.0-experimental-
|
|
45
|
+
"react-router": "0.0.0-experimental-73e447577"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/compression": "^1.7.0",
|