@remix-run/cloudflare 1.6.0 → 1.6.2-pre.0

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/cloudflare v1.6.0
2
+ * @remix-run/cloudflare v1.6.2-pre.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
File without changes
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/cloudflare v1.6.0
2
+ * @remix-run/cloudflare v1.6.2-pre.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
File without changes
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/cloudflare v1.6.0
2
+ * @remix-run/cloudflare v1.6.2-pre.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/cloudflare v1.6.0
2
+ * @remix-run/cloudflare v1.6.2-pre.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @remix-run/cloudflare v1.6.2-pre.0
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 { createCloudflareKVSessionStorage, createCookie, createCookieSessionStorage, createMemorySessionStorage, createSessionStorage } from '@remix-run/cloudflare';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/cloudflare v1.6.0
2
+ * @remix-run/cloudflare v1.6.2-pre.0
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 cloudflare = require('@remix-run/cloudflare');
16
-
17
-
18
-
19
14
  Object.defineProperty(exports, 'createCloudflareKVSessionStorage', {
20
15
  enumerable: true,
21
16
  get: function () { return cloudflare.createCloudflareKVSessionStorage; }
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @remix-run/cloudflare v1.6.0
2
+ * @remix-run/cloudflare v1.6.2-pre.0
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/cloudflare",
3
- "version": "1.6.0",
3
+ "version": "1.6.2-pre.0",
4
4
  "description": "Cloudflare 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-cloudflare"
12
12
  },
13
13
  "license": "MIT",
14
+ "main": "dist/index.js",
15
+ "typings": "dist/index.d.ts",
14
16
  "dependencies": {
15
17
  "@cloudflare/kv-asset-handler": "^0.1.3",
16
- "@remix-run/server-runtime": "1.6.0"
18
+ "@remix-run/server-runtime": "1.6.2-pre.0"
17
19
  },
18
20
  "devDependencies": {
19
21
  "@cloudflare/workers-types": "^3.4.0"
@@ -23,5 +25,11 @@
23
25
  },
24
26
  "engines": {
25
27
  "node": ">=14"
26
- }
28
+ },
29
+ "files": [
30
+ "dist/",
31
+ "CHANGELOG.md",
32
+ "LICENSE.md",
33
+ "README.md"
34
+ ]
27
35
  }
@@ -1 +0,0 @@
1
- export { createCloudflareKVSessionStorage, createCookie, createSessionStorage, createCookieSessionStorage, createMemorySessionStorage, } from "@remix-run/cloudflare";