remix 1.1.0 → 1.2.0-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.
- package/esm/index.js +2 -4
- package/index.d.ts +0 -3
- package/index.js +2 -27
- package/package.json +1 -1
package/esm/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* remix v1.
|
|
2
|
+
* remix v1.2.0-pre.0
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -8,6 +8,4 @@
|
|
|
8
8
|
*
|
|
9
9
|
* @license MIT
|
|
10
10
|
*/
|
|
11
|
-
|
|
12
|
-
export * from './server';
|
|
13
|
-
export * from './platform';
|
|
11
|
+
throw new Error("Did you forget to run `remix setup` for your platform?");
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* remix v1.
|
|
2
|
+
* remix v1.2.0-pre.0
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -10,29 +10,4 @@
|
|
|
10
10
|
*/
|
|
11
11
|
'use strict';
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
var client = require('./client');
|
|
16
|
-
var server = require('./server');
|
|
17
|
-
var platform = require('./platform');
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
Object.keys(client).forEach(function (k) {
|
|
22
|
-
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
23
|
-
enumerable: true,
|
|
24
|
-
get: function () { return client[k]; }
|
|
25
|
-
});
|
|
26
|
-
});
|
|
27
|
-
Object.keys(server).forEach(function (k) {
|
|
28
|
-
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
29
|
-
enumerable: true,
|
|
30
|
-
get: function () { return server[k]; }
|
|
31
|
-
});
|
|
32
|
-
});
|
|
33
|
-
Object.keys(platform).forEach(function (k) {
|
|
34
|
-
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
35
|
-
enumerable: true,
|
|
36
|
-
get: function () { return platform[k]; }
|
|
37
|
-
});
|
|
38
|
-
});
|
|
13
|
+
throw new Error("Did you forget to run `remix setup` for your platform?");
|