@remix-run/node 0.0.0-experimental-db4e08b8 → 0.0.0-experimental-ceeb7031
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/base64.js +1 -1
- package/cookieSigning.js +1 -1
- package/errors.js +1 -1
- package/fetch.js +1 -1
- package/formData.js +1 -1
- package/globals.d.ts +3 -0
- package/globals.js +1 -1
- package/index.js +1 -1
- package/magicExports/esm/platform.js +1 -1
- package/magicExports/platform.js +1 -1
- package/package.json +2 -2
- package/parseMultipartFormData.js +1 -1
- package/sessions/fileStorage.js +1 -1
- package/upload/fileUploadHandler.js +1 -1
- package/upload/memoryUploadHandler.js +1 -1
- package/upload/meter.js +1 -1
package/base64.js
CHANGED
package/cookieSigning.js
CHANGED
package/errors.js
CHANGED
package/fetch.js
CHANGED
package/formData.js
CHANGED
package/globals.d.ts
CHANGED
|
@@ -2,6 +2,9 @@ import type { InternalSignFunctionDoNotUseMe, InternalUnsignFunctionDoNotUseMe }
|
|
|
2
2
|
import { atob, btoa } from "./base64";
|
|
3
3
|
declare global {
|
|
4
4
|
namespace NodeJS {
|
|
5
|
+
interface ProcessEnv {
|
|
6
|
+
NODE_ENV: "development" | "production" | "test";
|
|
7
|
+
}
|
|
5
8
|
interface Global {
|
|
6
9
|
atob: typeof atob;
|
|
7
10
|
btoa: typeof btoa;
|
package/globals.js
CHANGED
package/index.js
CHANGED
package/magicExports/platform.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remix-run/node",
|
|
3
3
|
"description": "Node.js platform abstractions for Remix",
|
|
4
|
-
"version": "0.0.0-experimental-
|
|
4
|
+
"version": "0.0.0-experimental-ceeb7031",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"url": "https://github.com/remix-run/remix/issues"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@remix-run/server-runtime": "0.0.0-experimental-
|
|
15
|
+
"@remix-run/server-runtime": "0.0.0-experimental-ceeb7031",
|
|
16
16
|
"@types/busboy": "^0.3.1",
|
|
17
17
|
"@types/node-fetch": "^2.5.12",
|
|
18
18
|
"@web-std/file": "^3.0.0",
|
package/sessions/fileStorage.js
CHANGED
package/upload/meter.js
CHANGED