@remix-run/node 1.6.1 → 1.6.2-pre.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.
File without changes
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/node v1.6.1
2
+ * @remix-run/node v1.6.2-pre.3
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
File without changes
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/node v1.6.1
2
+ * @remix-run/node v1.6.2-pre.3
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
File without changes
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/node v1.6.1
2
+ * @remix-run/node v1.6.2-pre.3
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
File without changes
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/node v1.6.1
2
+ * @remix-run/node v1.6.2-pre.3
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/node v1.6.1
2
+ * @remix-run/node v1.6.2-pre.3
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
File without changes
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/node v1.6.1
2
+ * @remix-run/node v1.6.2-pre.3
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/node v1.6.1
2
+ * @remix-run/node v1.6.2-pre.3
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @remix-run/node v1.6.2-pre.3
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
+ export { createCookie, createCookieSessionStorage, createFileSessionStorage, createMemorySessionStorage, createSessionStorage, unstable_createFileUploadHandler, unstable_createMemoryUploadHandler, unstable_parseMultipartFormData } from '@remix-run/node';
12
+ export type { UploadHandler, UploadHandlerPart } from '@remix-run/node';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/node v1.6.1
2
+ * @remix-run/node v1.6.2-pre.3
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
@@ -9,13 +9,8 @@
9
9
  * @license MIT
10
10
  */
11
11
  'use strict';
12
-
13
12
  Object.defineProperty(exports, '__esModule', { value: true });
14
-
15
13
  var node = require('@remix-run/node');
16
-
17
-
18
-
19
14
  Object.defineProperty(exports, 'createCookie', {
20
15
  enumerable: true,
21
16
  get: function () { return node.createCookie; }
File without changes
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/node v1.6.1
2
+ * @remix-run/node v1.6.2-pre.3
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
File without changes
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/node v1.6.1
2
+ * @remix-run/node v1.6.2-pre.3
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
File without changes
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/node v1.6.1
2
+ * @remix-run/node v1.6.2-pre.3
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remix-run/node",
3
- "version": "1.6.1",
3
+ "version": "1.6.2-pre.3",
4
4
  "description": "Node.js platform abstractions for Remix",
5
5
  "bugs": {
6
6
  "url": "https://github.com/remix-run/remix/issues"
@@ -11,9 +11,11 @@
11
11
  "directory": "packages/remix-node"
12
12
  },
13
13
  "license": "MIT",
14
+ "main": "dist/index.js",
15
+ "typings": "dist/index.d.ts",
14
16
  "sideEffects": false,
15
17
  "dependencies": {
16
- "@remix-run/server-runtime": "1.6.1",
18
+ "@remix-run/server-runtime": "1.6.2-pre.3",
17
19
  "@remix-run/web-fetch": "^4.1.3",
18
20
  "@remix-run/web-file": "^3.0.2",
19
21
  "@remix-run/web-stream": "^1.0.3",
@@ -29,5 +31,11 @@
29
31
  },
30
32
  "engines": {
31
33
  "node": ">=14"
32
- }
34
+ },
35
+ "files": [
36
+ "dist/",
37
+ "CHANGELOG.md",
38
+ "LICENSE.md",
39
+ "README.md"
40
+ ]
33
41
  }
@@ -1,2 +0,0 @@
1
- export { createCookie, createSessionStorage, createCookieSessionStorage, createMemorySessionStorage, createFileSessionStorage, unstable_createFileUploadHandler, unstable_createMemoryUploadHandler, unstable_parseMultipartFormData, } from "@remix-run/node";
2
- export type { UploadHandler, UploadHandlerPart } from "@remix-run/node";