@remix-run/serve 1.0.0-rc.2 → 1.0.0-rc.3

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.
Files changed (3) hide show
  1. package/cli.js +2 -1
  2. package/index.js +1 -1
  3. package/package.json +2 -2
package/cli.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * @remix-run/serve v1.0.0-rc.2
3
+ * @remix-run/serve v1.0.0-rc.3
4
4
  *
5
5
  * Copyright (c) Remix Software Inc.
6
6
  *
@@ -18,6 +18,7 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
18
18
 
19
19
  var path__default = /*#__PURE__*/_interopDefaultLegacy(path);
20
20
 
21
+ process.env.NODE_ENV = "production";
21
22
  let port = process.env.PORT || 3000;
22
23
  let buildPathArg = process.argv[2];
23
24
 
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/serve v1.0.0-rc.2
2
+ * @remix-run/serve v1.0.0-rc.3
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@remix-run/serve",
3
3
  "description": "Production application server for Remix",
4
- "version": "1.0.0-rc.2",
4
+ "version": "1.0.0-rc.3",
5
5
  "repository": "https://github.com/remix-run/packages",
6
6
  "bin": {
7
7
  "remix-serve": "cli.js"
8
8
  },
9
9
  "dependencies": {
10
- "@remix-run/express": "1.0.0-rc.2",
10
+ "@remix-run/express": "1.0.0-rc.3",
11
11
  "compression": "^1.7.4",
12
12
  "express": "^4.17.1",
13
13
  "morgan": "^1.10.0"