@react-router/node 0.0.0-experimental-10a6fd0e1 → 0.0.0-experimental-3a25d7f8a
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/dist/crypto.js +1 -1
- package/dist/globals.js +1 -1
- package/dist/implementations.js +1 -1
- package/dist/index.js +1 -1
- package/dist/install.js +15 -0
- package/dist/sessions/fileStorage.js +1 -1
- package/dist/stream.js +1 -1
- package/dist/upload/fileUploadHandler.js +1 -1
- package/package.json +14 -3
- package/install.js +0 -8
- /package/{install.d.ts → dist/install.d.ts} +0 -0
package/dist/crypto.js
CHANGED
package/dist/globals.js
CHANGED
package/dist/implementations.js
CHANGED
package/dist/index.js
CHANGED
package/dist/install.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @react-router/node v0.0.0-experimental-3a25d7f8a
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) Remix Software Inc.
|
|
5
|
+
*
|
|
6
|
+
* This source code is licensed under the MIT license found in the
|
|
7
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
8
|
+
*
|
|
9
|
+
* @license MIT
|
|
10
|
+
*/
|
|
11
|
+
'use strict';
|
|
12
|
+
|
|
13
|
+
var globals = require('./globals.js');
|
|
14
|
+
|
|
15
|
+
globals.installGlobals();
|
package/dist/stream.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-router/node",
|
|
3
|
-
"version": "0.0.0-experimental-
|
|
3
|
+
"version": "0.0.0-experimental-3a25d7f8a",
|
|
4
4
|
"description": "Node.js platform abstractions for React Router",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/remix-run/react-router/issues"
|
|
@@ -13,8 +13,19 @@
|
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"main": "dist/index.js",
|
|
15
15
|
"typings": "dist/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"default": "./dist/index.js"
|
|
20
|
+
},
|
|
21
|
+
"./install": {
|
|
22
|
+
"types": "./dist/install.d.ts",
|
|
23
|
+
"default": "./dist/install.js"
|
|
24
|
+
},
|
|
25
|
+
"./package.json": "./package.json"
|
|
26
|
+
},
|
|
16
27
|
"sideEffects": [
|
|
17
|
-
"./install.js"
|
|
28
|
+
"./dist/install.js"
|
|
18
29
|
],
|
|
19
30
|
"dependencies": {
|
|
20
31
|
"@web3-storage/multipart-parser": "^1.0.0",
|
|
@@ -22,7 +33,7 @@
|
|
|
22
33
|
"source-map-support": "^0.5.21",
|
|
23
34
|
"stream-slice": "^0.1.2",
|
|
24
35
|
"undici": "^6.10.1",
|
|
25
|
-
"@react-router/server-runtime": "0.0.0-experimental-
|
|
36
|
+
"@react-router/server-runtime": "0.0.0-experimental-3a25d7f8a"
|
|
26
37
|
},
|
|
27
38
|
"devDependencies": {
|
|
28
39
|
"@types/cookie-signature": "^1.0.3",
|
package/install.js
DELETED
|
File without changes
|